media/webrtc/trunk/testing/gtest/xcode/Config/ReleaseProject.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 //  ReleaseProject.xcconfig
     3 //
     4 //  These are Release Configuration project settings for the gtest framework
     5 //  and 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 // subconfig/Release.xcconfig
    15 // Optimize for space and size (Apple recommendation)
    16 GCC_OPTIMIZATION_LEVEL = s
    18 // Deploment postprocessing is what triggers Xcode to strip
    19 DEPLOYMENT_POSTPROCESSING = YES
    21 // No symbols
    22 GCC_GENERATE_DEBUGGING_SYMBOLS = NO
    24 // Dead code strip does not affect ObjC code but can help for C
    25 DEAD_CODE_STRIPPING = YES
    27 // NDEBUG is used by things like assert.h, so define it for general compat.
    28 // ASSERT going away in release tends to create unused vars.
    29 OTHER_CFLAGS = $(OTHER_CFLAGS) -DNDEBUG=1 -Wno-unused-variable
    31 // When we strip we want to strip all symbols in release, but save externals.
    32 STRIP_STYLE = all

mercurial