From 5e52b9a5a5a6cecc697f61d45f00000925f30a68 Mon Sep 17 00:00:00 2001 From: snider Date: Mon, 6 Oct 2025 20:32:24 +0100 Subject: [PATCH] Set CMake policy CMP0091 to NEW in CMakeLists.txt --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index abc1cd54..d7ec2173 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,6 +27,9 @@ endif() if(POLICY CMP0043) cmake_policy(SET CMP0074 NEW) endif() +if(POLICY CMP0091) + cmake_policy(SET CMP0091 NEW) +endif() if(POLICY CMP0144) cmake_policy(SET CMP0144 NEW) endif()