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.)

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

mercurial