DebugProject.xcconfig 983 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // DebugProject.xcconfig
  3. //
  4. // These are Debug Configuration project settings for the gtest framework and
  5. // examples. It is set in the "Based On:" dropdown in the "Project" info
  6. // dialog.
  7. // This file is based on the Xcode Configuration files in:
  8. // https://github.com/google/google-toolbox-for-mac
  9. //
  10. #include "General.xcconfig"
  11. // No optimization
  12. GCC_OPTIMIZATION_LEVEL = 0
  13. // Deployment postprocessing is what triggers Xcode to strip, turn it off
  14. DEPLOYMENT_POSTPROCESSING = NO
  15. // Dead code stripping off
  16. DEAD_CODE_STRIPPING = NO
  17. // Debug symbols should be on obviously
  18. GCC_GENERATE_DEBUGGING_SYMBOLS = YES
  19. // Define the DEBUG macro in all debug builds
  20. OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1
  21. // These are turned off to avoid STL incompatibilities with client code
  22. // // Turns on special C++ STL checks to "encourage" good STL use
  23. // GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS