0

I downloaded boost 1.57. I am using Visual Studio 2012.

I added mypath\boost_1_57_0 to additional include directories.

I also added mypath\boost_1_57_0\libs into additional library directories.

In my code I just want to add a library #include <boost/filesystem.hpp> , but I get this error.

Error   5   error LNK1104: cannot open file 'libboost_filesystem-vc110-mt-sgd-1_57.lib' 

How can I solve this?

George Irimiciuc
  • 4,573
  • 8
  • 44
  • 88

1 Answers1

0

Open you property page,in "Configuration Properties"->"Linker"->"Input"->"Additional Dependcies",add the "libboost_filesystem-vc110-mt-sgd-1_57.lib";

Athenoa
  • 16