diff options
author | Winfidonarleyan <dowlandtop@yandex.com> | 2024-02-25 22:07:25 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 12:07:25 -0300 |
commit | d72a71a4b2ec33f2891c712642adbc63bb201e61 (patch) | |
tree | 6bcd96d1085d5734b0d8ee15dece6de6424182dc /CMakeLists.txt | |
parent | 2a2cc3c22f5900ce2c53644f7e90edbf93b6d961 (diff) |
feat(Cmake): add support old policy 0153 (#18384)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 20e1684c6b..f4b0f49790 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,6 +17,7 @@ message(STATUS "CMake version: ${CMAKE_VERSION}") # CMake policies (can not be handled elsewhere) cmake_policy(SET CMP0005 NEW) +cmake_policy(SET CMP0153 OLD) # Set projectname (must be done AFTER setting configurationtypes) project(AzerothCore VERSION 3.0.0 LANGUAGES CXX C) |