You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My system is ubuntu 18.04 and the cmake version is 3.30.5.
when i run the below build command
cmake -DCMAKE_BUILD_TYPE=Release -DUSE_NN=OFF ..
i got the following error:
CMake Error at okvis_timing/CMakeLists.txt:6 (find_package):
By not providing "FindBoost.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "Boost", but
CMake did not find one.
Could not find a package configuration file provided by "Boost" with any of
the following names:
BoostConfig.cmake
boost-config.cmake
Add the installation prefix of "Boost" to CMAKE_PREFIX_PATH or set
"Boost_DIR" to a directory containing one of the above files. If "Boost"
provides a separate development package or SDK, be sure it has been
installed.
in fact, i can find a FindBoost.cmake file in the /usr/local/share/cmake-3.30/Modules path.
how can i fix it?
The text was updated successfully, but these errors were encountered:
I assume you've already installed Boost (sudo apt install libboost-dev libboost-filesystem-dev ). Does removing the build folder and running the following work?
My system is ubuntu 18.04 and the cmake version is 3.30.5.
when i run the below build command
i got the following error:
in fact, i can find a FindBoost.cmake file in the
/usr/local/share/cmake-3.30/Modules
path.how can i fix it?
The text was updated successfully, but these errors were encountered: