Let me elaborate the question. I've a solution file, let's call it testapp.sln and I build this solution as follows,
devenv.exe C:\fd1\fd2\fd3\fd4\testapp.sln \build Debug|Win32
The thing is because of few modifications in this project, I now need to use some new functions from another .lib file whose name isn't fixed. The name of the folder in which this .lib resides is not constant. It is based on platform, debug/release, x86/x64 etc. For example,
While compiling for Win7 Debug, location of lib file might be c:\fd1\_obj_win7_32_debug_uwin\new.lib
While compiling for Windows 8 x64 Debug, location of lib file might be c:\fd1\_obj_win8_64_debug_uwin\new.lib
So how I can provide the location of lib file either in .sln or via command-line?
Thanks