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
find_package(Boost) has changed under CMake 3.26+:
CMake Warning (dev) at src/python/CMakeLists.txt:16 (find_package):
Policy CMP0167 is not set: The FindBoost module is removed. Run "cmake
--help-policy CMP0167" for policy details. Use the cmake_policy command to
set the policy and suppress this warning.
This warning is for project developers. Use -Wno-dev to suppress it.
The fix is to include `CONFIG`:
find_package(Boost CONFIG REQUIRED COMPONENTS python)
This also adds a CI test for cmake 4.0.3.
Signed-off-by: Cary Phillips <cary@ilm.com>
0 commit comments