source: gtest-1.7.0/xcode/Config/General.xcconfig@ 12746

Last change on this file since 12746 was 12746, checked in by hock@…, 10 years ago

integrated the Google Testing Framework (gtest)

and wrote an Hello World test, to ensure the framework is working..

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