From 18cc36bc67023dc9ca58e77733c2b8c74655cf86 Mon Sep 17 00:00:00 2001 From: Giacomo Pozzoni Date: Mon, 9 Sep 2019 08:17:27 +0200 Subject: [PATCH] Build/CMake: Set some policies to NEW (#23779) * Build/CMake: Set CMP0005 to NEW See https://cmake.org/cmake/help/v3.2/policy/CMP0005.html * Build/CMake: Set CMP0043 to NEW See https://cmake.org/cmake/help/v3.2/policy/CMP0043.html * Build/CMake: Set CMP0074 to NEW See https://cmake.org/cmake/help/v3.12/policy/CMP0074.html --- CMakeLists.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bc0be3a1e60..a9c9705dce8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,15 +19,19 @@ set(CMAKE_DISABLE_IN_SOURCE_BUILD ON) project(TrinityCore) # CMake policies (can not be handled elsewhere) -cmake_policy(SET CMP0005 OLD) +cmake_policy(SET CMP0005 NEW) if(POLICY CMP0043) - cmake_policy(SET CMP0043 OLD) # Disable 'Ignore COMPILE_DEFINITIONS_ properties' + cmake_policy(SET CMP0043 NEW) # Disable 'Ignore COMPILE_DEFINITIONS_ properties' endif() if(POLICY CMP0054) cmake_policy(SET CMP0054 NEW) # Only interpret if() arguments as variables or keywords when unquoted - prevents intepreting if (SOME_STRING_VARIABLE MATCHES "MSVC") as if (SOME_STRING_VARIABLE MATCHES "1") endif() +if(POLICY CMP0074) + cmake_policy(SET CMP0074 NEW) # find_package() uses _ROOT variables +endif() + # Set RPATH-handing (CMake parameters) set(CMAKE_SKIP_BUILD_RPATH 0) set(CMAKE_BUILD_WITH_INSTALL_RPATH 0)