I am facing issue on getting cmake work with custom boost libraries for my project (relate question here
Its failing in find_path
step so to debug further i tried different combinations for this find_path all failed. Even the simple query below fails for me (complete-folder-path is complete path to the folder from root).
ls <complete-folder-path>
main.cpp
part of Cmake file
find_path(_TEST_Path "main.cpp" HINTS "<complete-folder-path>")
message(WARNING ${_TEST_Path})
This prints
_TEST_Path-NOTFOUND
What am i missing here ?