media/webrtc/trunk/testing/gtest/xcode/Config/DebugProject.xcconfig

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 //
michael@0 2 // DebugProject.xcconfig
michael@0 3 //
michael@0 4 // These are Debug Configuration project settings for the gtest framework and
michael@0 5 // examples. It is set in the "Based On:" dropdown in the "Project" info
michael@0 6 // dialog.
michael@0 7 // This file is based on the Xcode Configuration files in:
michael@0 8 // http://code.google.com/p/google-toolbox-for-mac/
michael@0 9 //
michael@0 10
michael@0 11 #include "General.xcconfig"
michael@0 12
michael@0 13 // No optimization
michael@0 14 GCC_OPTIMIZATION_LEVEL = 0
michael@0 15
michael@0 16 // Deployment postprocessing is what triggers Xcode to strip, turn it off
michael@0 17 DEPLOYMENT_POSTPROCESSING = NO
michael@0 18
michael@0 19 // Dead code stripping off
michael@0 20 DEAD_CODE_STRIPPING = NO
michael@0 21
michael@0 22 // Debug symbols should be on obviously
michael@0 23 GCC_GENERATE_DEBUGGING_SYMBOLS = YES
michael@0 24
michael@0 25 // Define the DEBUG macro in all debug builds
michael@0 26 OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1
michael@0 27
michael@0 28 // These are turned off to avoid STL incompatibilities with client code
michael@0 29 // // Turns on special C++ STL checks to "encourage" good STL use
michael@0 30 // GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS

mercurial