diff options
author | shiqian <shiqian@861a406c-534a-0410-8894-cb66d6ee9925> | 2008-07-25 00:54:56 (GMT) |
---|---|---|
committer | shiqian <shiqian@861a406c-534a-0410-8894-cb66d6ee9925> | 2008-07-25 00:54:56 (GMT) |
commit | dbc56bf84bfa3fe27146b56f468a736941892dcc (patch) | |
tree | 978b06bbab74de8d529107c38d25435ad1f674b9 /xcode/Config/FrameworkTarget.xcconfig | |
parent | 253d2bc5760533c136f5b1b34b8c6f03d79fc538 (diff) | |
download | googletest-dbc56bf84bfa3fe27146b56f468a736941892dcc.zip googletest-dbc56bf84bfa3fe27146b56f468a736941892dcc.tar.gz googletest-dbc56bf84bfa3fe27146b56f468a736941892dcc.tar.bz2 |
Adds an Xcode project for building gtest. By Preston Jackson.
Diffstat (limited to 'xcode/Config/FrameworkTarget.xcconfig')
-rw-r--r-- | xcode/Config/FrameworkTarget.xcconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/xcode/Config/FrameworkTarget.xcconfig b/xcode/Config/FrameworkTarget.xcconfig new file mode 100644 index 0000000..3deadcd --- /dev/null +++ b/xcode/Config/FrameworkTarget.xcconfig @@ -0,0 +1,17 @@ +// +// FrameworkTarget.xcconfig +// +// These are Framework target settings for the gtest framework and examples. 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/ +// + +// Dynamic libs need to be position independent +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 |