aboutsummaryrefslogtreecommitdiffstats
path: root/xcode/Config
diff options
context:
space:
mode:
authorpreston.a.jackson <preston.a.jackson@861a406c-534a-0410-8894-cb66d6ee9925>2009-08-28 22:11:18 +0000
committerpreston.a.jackson <preston.a.jackson@861a406c-534a-0410-8894-cb66d6ee9925>2009-08-28 22:11:18 +0000
commitcb2b1640b277dd9ba2f411cc830682f28bfdaa45 (patch)
tree35eece10bf305d79acfdac17e64c809ed2d156a9 /xcode/Config
parentb5936af65c8aebd53b50b08fd4b28b6272f83dcf (diff)
downloadgoogletest-cb2b1640b277dd9ba2f411cc830682f28bfdaa45.tar.gz
googletest-cb2b1640b277dd9ba2f411cc830682f28bfdaa45.tar.bz2
googletest-cb2b1640b277dd9ba2f411cc830682f28bfdaa45.zip
Updating for Snow Leopard. Cleaning up the sample code. Updating the README with instructions for installation from the command line.
Diffstat (limited to 'xcode/Config')
-rw-r--r--xcode/Config/FrameworkTarget.xcconfig4
-rw-r--r--xcode/Config/StaticLibraryTarget.xcconfig3
2 files changed, 5 insertions, 2 deletions
diff --git a/xcode/Config/FrameworkTarget.xcconfig b/xcode/Config/FrameworkTarget.xcconfig
index 3deadcdb..357b1c8f 100644
--- a/xcode/Config/FrameworkTarget.xcconfig
+++ b/xcode/Config/FrameworkTarget.xcconfig
@@ -13,5 +13,5 @@ GCC_DYNAMIC_NO_PIC = NO
// Dynamic libs should not have their external symbols stripped.
STRIP_STYLE = non-global
-// Installation Directory
-INSTALL_PATH = @loader_path/../Frameworks
+// Let the user install by specifying the $DSTROOT with xcodebuild
+SKIP_INSTALL = NO
diff --git a/xcode/Config/StaticLibraryTarget.xcconfig b/xcode/Config/StaticLibraryTarget.xcconfig
index 67f840ad..3922fa51 100644
--- a/xcode/Config/StaticLibraryTarget.xcconfig
+++ b/xcode/Config/StaticLibraryTarget.xcconfig
@@ -13,3 +13,6 @@ GCC_DYNAMIC_NO_PIC = NO
// Static libs should not have their internal globals or external symbols
// stripped.
STRIP_STYLE = debugging
+
+// Let the user install by specifying the $DSTROOT with xcodebuild
+SKIP_INSTALL = NO