From 6c0e2ce32340b9a67ac0a8efdc90651d17bba90d Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 13 Aug 2025 11:58:50 +0500 Subject: [PATCH] cmake - fix CMP0167 warning CMP0167 is removing FindBoost module, but it's only introduced in 3.30, switching to OLD for now. --- cmake/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 7f252a8619..07642ec48e 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -41,6 +41,7 @@ cmake_policy(SET CMP0086 NEW) if (POLICY CMP0144) cmake_policy(SET CMP0144 NEW) # find_package() uses upper-case _ROOT variables. endif() +cmake_policy(SET CMP0167 OLD) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release")