diff options
-rw-r--r-- | CMakeLists.txt | 8 |
1 files 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_<Config> properties' + cmake_policy(SET CMP0043 NEW) # Disable 'Ignore COMPILE_DEFINITIONS_<Config> 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 <PackageName>_ROOT variables +endif() + # Set RPATH-handing (CMake parameters) set(CMAKE_SKIP_BUILD_RPATH 0) set(CMAKE_BUILD_WITH_INSTALL_RPATH 0) |