I searched everywhere but most of the answers are relevant to Linux, not many use CLion on Windows.
So I extracted boost_1_60_0 into C:\
and now my path for the boost root folder is
C:\boost_1_60_0
I got the CMakeLists.txt file where I'm trying to set the root directory of boost and include it, but 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 am I doing wrong?