Blame | Last modification | View Log | Download
//// General.xcconfig//// These are General configuration settings for the gtest framework and// examples.// This file is based on the Xcode Configuration files in:// https://github.com/google/google-toolbox-for-mac//// Build for PPC and Intel, 32- and 64-bitARCHS = i386 x86_64 ppc ppc64// Zerolink prevents link warnings so turn it offZERO_LINK = NO// Prebinding considered unhelpful in 10.3 and laterPREBINDING = NO// Strictest warning policyWARNING_CFLAGS = -Wall -Werror -Wendif-labels -Wnewline-eof -Wno-sign-compare -Wshadow// Work around Xcode bugs by using external strip. See:// http://lists.apple.com/archives/Xcode-users/2006/Feb/msg00050.htmlSEPARATE_STRIP = YES// Force C99 dialectGCC_C_LANGUAGE_STANDARD = c99// not sure why apple defaults this on, but it's pretty riskyALWAYS_SEARCH_USER_PATHS = NO// Turn on position dependent code for most cases (overridden where appropriate)GCC_DYNAMIC_NO_PIC = YES// Default SDK and minimum OS version is 10.4SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.4u.sdkMACOSX_DEPLOYMENT_TARGET = 10.4GCC_VERSION = 4.0// VERSIONING BUILD SETTINGS (used in Info.plist)GTEST_VERSIONINFO_ABOUT = © 2008 Google Inc.