Boost c++ LNK1104 cannot open file 'libboost_serialization-vc140-mt-gd-1_62.lib' error

boost, c++, visual-studio, visual-studio-2015

Solution

First of all, need to Building Boost.Build engine (just run bootstrap.bat on Windows)

Second step is to compile boost libraries (run b2.exe on Windows)

Third and the final step is to add path "...\boost_1_62_0\stage\lib\" to General->Library directories project configuration

Problem

I am currently trying to add boost to my c++ project but I am hit with this error LNK1104 cannot open file 'libboost_serialization-vc140-mt-gd-1_62.lib' i am actually trying this guys method Here And i am going to use the headers only library using visual studio 2015 but i keep having this error , I've also tried using the nuget to install the boost but it gave me the same error when i try using b.jam following this person's guide here And I always get failed to update error so i have no clue what to do to get boost running in my C++ project

Original source

Related problems