michael@0: // michael@0: // DebugProject.xcconfig michael@0: // michael@0: // These are Debug Configuration project settings for the gtest framework and michael@0: // examples. It is set in the "Based On:" dropdown in the "Project" info michael@0: // dialog. michael@0: // This file is based on the Xcode Configuration files in: michael@0: // http://code.google.com/p/google-toolbox-for-mac/ michael@0: // michael@0: michael@0: #include "General.xcconfig" michael@0: michael@0: // No optimization michael@0: GCC_OPTIMIZATION_LEVEL = 0 michael@0: michael@0: // Deployment postprocessing is what triggers Xcode to strip, turn it off michael@0: DEPLOYMENT_POSTPROCESSING = NO michael@0: michael@0: // Dead code stripping off michael@0: DEAD_CODE_STRIPPING = NO michael@0: michael@0: // Debug symbols should be on obviously michael@0: GCC_GENERATE_DEBUGGING_SYMBOLS = YES michael@0: michael@0: // Define the DEBUG macro in all debug builds michael@0: OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1 michael@0: michael@0: // These are turned off to avoid STL incompatibilities with client code michael@0: // // Turns on special C++ STL checks to "encourage" good STL use michael@0: // GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS