aboutsummaryrefslogtreecommitdiff
path: root/cmake/compiler/xcode
diff options
context:
space:
mode:
authorclick <none@none>2010-09-30 13:04:46 +0200
committerclick <none@none>2010-09-30 13:04:46 +0200
commit62b853e8edc5d8e8a7ae37a08b5c5b5a836e7d63 (patch)
tree74aa0ab41966a0749c07a678971f82a1f15af063 /cmake/compiler/xcode
parent5ec21b3e602e350014fc69bdb61f974a296c46e9 (diff)
BuildSystem: Fix missing variable parameter encapsulation for _BUILD_DIRECTIVE (gcc/xcode)
--HG-- branch : trunk
Diffstat (limited to 'cmake/compiler/xcode')
-rw-r--r--cmake/compiler/xcode/settings.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/compiler/xcode/settings.cmake b/cmake/compiler/xcode/settings.cmake
index 5a01cee61ec..8f94516c354 100644
--- a/cmake/compiler/xcode/settings.cmake
+++ b/cmake/compiler/xcode/settings.cmake
@@ -1,3 +1,3 @@
# Set build-directive (used in core to tell which buildtype we used)
-add_definitions(-D_BUILD_DIRECTIVE="\"$(CONFIGURATION)"\")
+add_definitions(-D_BUILD_DIRECTIVE="$(CONFIGURATION)")