Fatal error LNK1104: cannot open the file "libboost_date_time-vc100-mt-gd-1_53.lib" - the file is ignored, regardless of what I link

I only have bjamed boost, and it looks like it still refuses to work (I tried and abandoned this library). I did that I ran bjam.exe and I linked:

include directories: C: \ ... \ boost_1_53_0
Library directories: C: \ ... \ boost_1_53_0 \ bin.v2 \ libs

But I still get the error. Therefore, I decided to look in the folders, and it seemed that this was the path to the desired library:

C: \ ... \ boost_1_53_0 \ bin.v2 \ libs \ date_time \ build \ msvc-10.0 \ debug \ link-static \ threading-multi \

If I explicitly add this folder to Library directories , the library will be found, but another error appears in VCC asking for another library.
So how can I ask bjam to create a system that VCC can understand ?

+5
source share
2 answers

For me the installation of the C: ... \ boost_1_55_0 \ stage \ lib directory worked. Added to:

Project Properties → Configuration Properties → VC ++ Directories → Library Directories.

+3
source

Adding the following link to “Configuration Properties → Linker → General → Additional Library Directories” also helped me. 'C: \ Program Files \ boost \ boost_1_55_0 \ stage \ lib'

+1
source

All Articles