From 6f31ec7a61f66b393fd8cc8c04179b61315c47c8 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Sat, 20 Jan 2024 09:02:43 +0100 Subject: [PATCH] Remove cmake policies CMP0066: Honor per-config flags in try_compile() source-file signature. CMP0067: Honor language standard in try_compile() source-file signature. We no longer have any try_compile --- CMakeLists.txt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0dbb39225..247e69d49 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,13 +3,6 @@ # CMake 3.21 is needed for file(IMPORTED_RUNTIME_ARTIFACTS) cmake_minimum_required(VERSION 3.21) -if(POLICY CMP0066) - cmake_policy(SET CMP0066 OLD) -endif() -if(POLICY CMP0067) - cmake_policy(SET CMP0067 NEW) -endif() - include(cmake/Mac.cmake) project(fish)