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

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

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

mercurial