0

I am trying to build C++ progect uses boost and Cmake, but I have a problem with some libsenter image description here

I already added paths to "Environment Variables"enter image description here

And even added boost folder to "Path"enter image description here But it doesn't work. May somebody give an advice!?

Dmitrii
  • 618
  • 2
  • 7
  • 19

1 Answers1

0

Your BOOST_LIBRARYDIR should be a path to folder containing build boost libraries (typically something like boost_1_64\stage\lib filled with .dll and .lib files) while boost_1_64\libs contains source code. You need to build boost first and then set BOOST_LIBRARYDIR accordingly.

user7860670
  • 35,849
  • 4
  • 58
  • 84