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/DebugProject.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/DebugProject.xcconfig')
-rw-r--r-- | xcode/Config/DebugProject.xcconfig | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/xcode/Config/DebugProject.xcconfig b/xcode/Config/DebugProject.xcconfig new file mode 100644 index 00000000..3d68157d --- /dev/null +++ b/xcode/Config/DebugProject.xcconfig @@ -0,0 +1,30 @@ +// +// DebugProject.xcconfig +// +// These are Debug Configuration project settings for the gtest framework and +// examples. It is set in the "Based On:" dropdown in the "Project" info +// dialog. +// This file is based on the Xcode Configuration files in: +// http://code.google.com/p/google-toolbox-for-mac/ +// + +#include "General.xcconfig" + +// No optimization +GCC_OPTIMIZATION_LEVEL = 0 + +// Deployment postprocessing is what triggers Xcode to strip, turn it off +DEPLOYMENT_POSTPROCESSING = NO + +// Dead code stripping off +DEAD_CODE_STRIPPING = NO + +// Debug symbols should be on obviously +GCC_GENERATE_DEBUGGING_SYMBOLS = YES + +// Define the DEBUG macro in all debug builds +OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1 + +// These are turned off to avoid STL incompatibilities with client code +// // Turns on special C++ STL checks to "encourage" good STL use +// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS |