I am trying to build C++ progect uses boost and Cmake, but I have a problem with some libs
I already added paths to "Environment Variables"
And even added boost folder to "Path"
But it doesn't work. May somebody give an advice!?
I am trying to build C++ progect uses boost and Cmake, but I have a problem with some libs
I already added paths to "Environment Variables"
And even added boost folder to "Path"
But it doesn't work. May somebody give an advice!?
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.