diff options
author | leak <none@none> | 2010-12-20 02:23:55 +0100 |
---|---|---|
committer | leak <none@none> | 2010-12-20 02:23:55 +0100 |
commit | 4c9cfa6739ed5f0e7f2d154b24987213b681c07a (patch) | |
tree | 7658e972d6bda6724484389c780b7ef1bc2718df /CMakeLists.txt | |
parent | 33808ab5679f84f434579086cb49a864fe6b1dc8 (diff) |
Core/Buildsystem: Resolved quoting problem that caused gcc to spam warnings. Patch by click.
--HG--
branch : trunk
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c9a4c1a742c..5f1ca3c4b5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ project(TrinityCore) # CMake policies (can not be handled elsewhere) cmake_minimum_required(VERSION 2.6) -cmake_policy(SET CMP0005 NEW) +cmake_policy(SET CMP0005 OLD) # Set RPATH-handing (CMake parameters) set(CMAKE_SKIP_BUILD_RPATH 0) |