summaryrefslogtreecommitdiff
path: root/indra/cmake
diff options
context:
space:
mode:
authorLeslie Linden <leslie@lindenlab.com>2011-04-18 14:08:29 -0700
committerLeslie Linden <leslie@lindenlab.com>2011-04-18 14:08:29 -0700
commit8d2943c5ddd08ce7a40d42325206f882c99f497a (patch)
treec77b9bf66076747a2fe35b22be3746bf4b41f3f4 /indra/cmake
parentbe8e3640226333d22304887b9c2682d30f5d945c (diff)
Fixed debug information format for mac to allow breakpoints to work under Xcode.
Diffstat (limited to 'indra/cmake')
-rw-r--r--indra/cmake/Variables.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake
index 77dd34d122..b6710300bb 100644
--- a/indra/cmake/Variables.cmake
+++ b/indra/cmake/Variables.cmake
@@ -102,7 +102,7 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.5)
set(CMAKE_OSX_SYSROOT /Developer/SDKs/MacOSX10.5.sdk)
set(CMAKE_XCODE_ATTRIBUTE_GCC_VERSION "4.2")
- set(CMAKE_XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT "DWARF with dSYM File")
+ set(CMAKE_XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT dwarf-with-dsym)
# NOTE: To attempt an i386/PPC Universal build, add this on the configure line:
# -DCMAKE_OSX_ARCHITECTURES:STRING='i386;ppc'