From a9dd1625d8e888aabf80a4ff48e66474fdfb747b Mon Sep 17 00:00:00 2001 From: Joris Vaillant <joris.vaillant@inria.fr> Date: Wed, 24 Jul 2024 14:23:22 +0200 Subject: [PATCH] cmake: Set policy CMP0167 to avoid warnings with CMake 3.30 --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 423fa713..56864d6b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,6 +68,11 @@ option(SUFFIX_SO_VERSION "Suffix library name with its version" OFF) option(BUILD_TESTING_SCIPY "Build the SciPy tests (scipy should be installed on the machine)" ON) +# Use BoostConfig module distributed by boost library instead of using FindBoost +# module distributed by CMake +if(POLICY CMP0167) + cmake_policy(SET CMP0167 NEW) +endif() include("${JRL_CMAKE_MODULES}/base.cmake") compute_project_args(PROJECT_ARGS LANGUAGES CXX) project(${PROJECT_NAME} ${PROJECT_ARGS}) -- GitLab