From 7afaf743c679e6e2804ebf24ea3c1cc319ad8667 Mon Sep 17 00:00:00 2001 From: Kargatum Date: Sun, 22 Sep 2019 19:02:40 +0700 Subject: [PATCH] feat(Cmake): set policy CMP005 to NEW (#2294) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c5405080..31fe7915d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ project(AzerothCore) cmake_minimum_required(VERSION 3.8) # CMake policies (can not be handled elsewhere) -cmake_policy(SET CMP0005 OLD) +cmake_policy(SET CMP0005 NEW) # add this options before PROJECT keyword set(CMAKE_DISABLE_SOURCE_CHANGES ON)