/nod:kernel32.lib /nod:advapi32.lib /nod:user32.lib /nod:gdi32.lib
/nod:shell32.lib /nod:comdlg32.lib /nod:version.lib /nod:mpr.lib
/nod:rasapi32.lib /nod:winmm.lib /nod:winspool.lib /nod:vfw32.lib
/nod:secur32.lib /nod:oleacc.lib /nod:oledlg.lib /nod:sensapi.lib
unicows.lib
kernel32.lib advapi32.lib user32.lib gdi32.lib
shell32.lib comdlg32.lib version.lib mpr.lib
rasapi32.lib winmm.lib winspool.lib vfw32.lib
secur32.lib oleacc.lib oledlg.lib sensapi.lib
<you own libraries>
There is problem when you try to use MSLU in Visual Studio 2005: if you
add recommended list of nod's and libraries to "Linker::Input::Additional
dependencies" option in project's property pages then every time you will
start debug session using "Debug->Start Debugging" or build your project
using "Build->Build myprj" you will get something like this:
------ Build started: Project: myprj, Configuration: Debug Win32 ------
Linking...
Embedding manifest...
Build Time 0:10
Build log was saved at "file://c:\myprj\Debug\BuildLog.htm"
myprj - 0 error(s), 0 warning(s)
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
So i want to say that your project will never be in up-to-date state.
Interestingly enough that this problem does not appear if you build
problematic solution from command line using msbuild tool:
msbuild mysolution.sln /p:Configuration=UDebug
This means that building solution from command line is slightly differs
from building from IDE.
There is workaround for this problem:
1. Include the following in "Linker::Input::Ignore Specific Library"
option:
kernel32.lib advapi32.lib user32.lib gdi32.lib
shell32.lib comdlg32.lib version.lib mpr.lib
rasapi32.lib winmm.lib winspool.lib vfw32.lib
secur32.lib oleacc.lib oledlg.lib sensapi.lib
2. Include the following in "Linker::Input::Additional dependencies"
option:
unicows.lib
kernel32.lib advapi32.lib user32.lib gdi32.lib
shell32.lib comdlg32.lib version.lib mpr.lib
rasapi32.lib winmm.lib winspool.lib vfw32.lib
secur32.lib oleacc.lib oledlg.lib sensapi.lib
<you own libraries>
Using such settings your project will be up-to-date when it should.