From d72a71a4b2ec33f2891c712642adbc63bb201e61 Mon Sep 17 00:00:00 2001 From: Winfidonarleyan Date: Sun, 25 Feb 2024 22:07:25 +0700 Subject: [PATCH] feat(Cmake): add support old policy 0153 (#18384) --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 20e1684c6..f4b0f4979 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)