aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDDuarte <dnpd.dd@gmail.com>2014-07-30 14:20:17 +0100
committerDDuarte <dnpd.dd@gmail.com>2014-07-30 14:20:17 +0100
commit202255d935969b7e5e5702b986504192f1ba3f5d (patch)
treed30db8f59e3a8740df8be9e23ad26969d6750b9f
parenta97e477e31bc3f28f4826f469bf08e10579e17cd (diff)
Build/CMake: Mute a CMake Warning (dev) in mysqllite project
-rw-r--r--CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7150c9664bb..1c54da4d080 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,6 +14,7 @@ project(TrinityCore)
# CMake policies (can not be handled elsewhere)
cmake_minimum_required(VERSION 2.8.9)
cmake_policy(SET CMP0005 OLD)
+cmake_policy(SET CMP0043 OLD) # Disable 'Ignore COMPILE_DEFINITIONS_<Config> properties'
# add this options before PROJECT keyword
set(CMAKE_DISABLE_SOURCE_CHANGES ON)