From c940752ce7fdf62554a89c2ed12c7cf11b4e9976 Mon Sep 17 00:00:00 2001 From: Daniel Scharrer <~@ds.me> Date: Tue, 31 Dec 2024 02:12:55 +0100 Subject: [PATCH] CMake: Keep using FindBoost.cmake for now --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d4c133b..3701504 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,10 @@ cmake_minimum_required(VERSION 2.8...3.31) +# CMake 30 +if(POLICY CMP0167) + cmake_policy(SET CMP0167 OLD) +endif() + if(CMAKE_VERSION VERSION_LESS 3.12) cmake_policy(VERSION ${CMAKE_VERSION}) endif()