mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
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
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user