From 801f26c35d6a8f1ab45da84309a0bfe308f79a13 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Mon, 23 Mar 2020 01:15:49 +0000 Subject: [PATCH] cmake: set CMP0066 => NEW --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 831602a4c1..6e887dc5a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,6 +56,10 @@ if(POLICY CMP0056) cmake_policy(SET CMP0056 NEW) # try_compile(): link flags endif() +if(POLICY CMP0066) + cmake_policy(SET CMP0066 NEW) # CMake 3.7: try_compile(): use per-config flags, like CMAKE_CXX_FLAGS_RELEASE +endif() + if(POLICY CMP0067) cmake_policy(SET CMP0067 NEW) # CMake 3.8: try_compile(): honor language standard variables (like C++11) endif()