How can I link Boost to my CMake project on Windows -
i searched everywhere of answers relevant linux, not many use clion on windows.
so extracted boost_1_60_0 c:\ , path boost root folder is
c:\boost_1_60_0 i got cmakelists.txt file i'm trying set root directory of boost , include it, doesn't recognize it:
set(boost_path "c:/boost_1_60_0") find_package(boost 1.60.0) if(boost_found) message(status "it works!") endif() what doing wrong?
Comments
Post a Comment