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

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

michael@0 1 //
michael@0 2 // General.xcconfig
michael@0 3 //
michael@0 4 // These are General configuration settings for the gtest framework and
michael@0 5 // examples.
michael@0 6 // This file is based on the Xcode Configuration files in:
michael@0 7 // http://code.google.com/p/google-toolbox-for-mac/
michael@0 8 //
michael@0 9
michael@0 10 // Build for PPC and Intel, 32- and 64-bit
michael@0 11 ARCHS = i386 x86_64 ppc ppc64
michael@0 12
michael@0 13 // Zerolink prevents link warnings so turn it off
michael@0 14 ZERO_LINK = NO
michael@0 15
michael@0 16 // Prebinding considered unhelpful in 10.3 and later
michael@0 17 PREBINDING = NO
michael@0 18
michael@0 19 // Strictest warning policy
michael@0 20 WARNING_CFLAGS = -Wall -Werror -Wendif-labels -Wnewline-eof -Wno-sign-compare -Wshadow
michael@0 21
michael@0 22 // Work around Xcode bugs by using external strip. See:
michael@0 23 // http://lists.apple.com/archives/Xcode-users/2006/Feb/msg00050.html
michael@0 24 SEPARATE_STRIP = YES
michael@0 25
michael@0 26 // Force C99 dialect
michael@0 27 GCC_C_LANGUAGE_STANDARD = c99
michael@0 28
michael@0 29 // not sure why apple defaults this on, but it's pretty risky
michael@0 30 ALWAYS_SEARCH_USER_PATHS = NO
michael@0 31
michael@0 32 // Turn on position dependent code for most cases (overridden where appropriate)
michael@0 33 GCC_DYNAMIC_NO_PIC = YES
michael@0 34
michael@0 35 // Default SDK and minimum OS version is 10.4
michael@0 36 SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdk
michael@0 37 MACOSX_DEPLOYMENT_TARGET = 10.4
michael@0 38 GCC_VERSION = 4.0
michael@0 39
michael@0 40 // VERSIONING BUILD SETTINGS (used in Info.plist)
michael@0 41 GTEST_VERSIONINFO_ABOUT = © 2008 Google Inc.

mercurial