From 145a76d3000f84c12a70bb55a9cf91e41fed3a8f Mon Sep 17 00:00:00 2001 From: Issac332 <119879937+Issac8658@users.noreply.github.com> Date: Thu, 30 Jul 2026 12:12:32 +0300 Subject: [PATCH] suppress Boost warning --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index be503d6..4852edd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -400,6 +400,10 @@ else() ) endif() +if(POLICY CMP0167) # suppress Boost warning + cmake_policy(SET CMP0167 OLD) +endif() + find_package(PkgConfig REQUIRED) find_package(ZLIB REQUIRED) find_package(SDL3 CONFIG)