Hello everyone, I've just built the boost libraries and I'm trying to get visual studio 2008 to properly recognize the libraries.
The library that the linker is looking for is in
C:\development\boost\build\boost\bin.v2\libs\filesystem\build\msvc-9.0\debug\link-static\threading-multi\libboost_filesystem-vc90-mt-gd-1_38.lib
Even though I've added
C:\development\boost\build\boost\bin.v2\libs
to the extra libraries vc++ global setting.
 
Error Message: 1>LINK : fatal error LNK1104: cannot open file 'libboost_filesystem-vc90-mt-gd-1_38.lib'
 
If I add C:\development\boost\build\boost\bin.v2\libs\filesystem\build\msvc-9.0\debug\link-static\threading-multi to the project extra library setting though, the program compiles and links properly. On MSDN, http://msdn.microsoft.com/en-us/library/ts7eyw4s.aspx
I've seen nothing that I think applies to me. So, what do I do?