diff options
author | Billy Donahue <BillyDonahue@users.noreply.github.com> | 2015-08-22 17:37:27 -0400 |
---|---|---|
committer | Billy Donahue <BillyDonahue@users.noreply.github.com> | 2015-08-22 17:37:27 -0400 |
commit | 3003e787a5f694e183cf3284a1ee85fe6a5db5b0 (patch) | |
tree | e6b4ce98d48a8e379733e10018576d999c7734da /xcode/Config/StaticLibraryTarget.xcconfig | |
parent | 642acbd61235dc68f606237193cf7e7c4a61af67 (diff) | |
parent | 613e23a4bf37470845405a6090ce5ac4d66f5b4a (diff) | |
download | googletest-3003e787a5f694e183cf3284a1ee85fe6a5db5b0.tar.gz googletest-3003e787a5f694e183cf3284a1ee85fe6a5db5b0.tar.bz2 googletest-3003e787a5f694e183cf3284a1ee85fe6a5db5b0.zip |
Merge pull request #498 from BillyDonahue/wiki
Bring googlecode wiki markdown files into docs/ folder.
Diffstat (limited to 'xcode/Config/StaticLibraryTarget.xcconfig')
-rw-r--r-- | xcode/Config/StaticLibraryTarget.xcconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/xcode/Config/StaticLibraryTarget.xcconfig b/xcode/Config/StaticLibraryTarget.xcconfig new file mode 100644 index 00000000..3922fa51 --- /dev/null +++ b/xcode/Config/StaticLibraryTarget.xcconfig @@ -0,0 +1,18 @@ +// +// StaticLibraryTarget.xcconfig +// +// These are static library target settings for libgtest.a. It +// is set in the "Based On:" dropdown in the "Target" info dialog. +// This file is based on the Xcode Configuration files in: +// http://code.google.com/p/google-toolbox-for-mac/ +// + +// Static libs can be included in bundles so make them position independent +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 |