Project-Debug.xcconfig 659 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Copyright (c) 2014-present, Facebook, Inc.
  3. // All rights reserved.
  4. //
  5. // This source code is licensed under the BSD-style license found in the
  6. // LICENSE file in the root directory of this source tree. An additional grant
  7. // of patent rights can be found in the PATENTS file in the same directory.
  8. //
  9. #include "Project.xcconfig"
  10. // Architectures
  11. ONLY_ACTIVE_ARCH = YES
  12. // Code Generation
  13. GCC_OPTIMIZATION_LEVEL = 0
  14. // Enable assertions
  15. ENABLE_NS_ASSERTIONS = YES
  16. // Avoid compression overhead
  17. COMPRESS_PNG_FILES = NO
  18. // Deployment
  19. COPY_PHASE_STRIP = NO
  20. // Default to dwarf
  21. DEBUG_INFORMATION_FORMAT = dwarf
  22. // Testing
  23. ENABLE_TESTABILITY = YES