1
0

XcodeXCConfig.c 388 B

1234567891011121314151617181920
  1. #ifndef BUILD_DEBUG
  2. # error BUILD_DEBUG is undefined
  3. #endif
  4. #ifndef GLOBAL_DEBUG
  5. # error GLOBAL_DEBUG is undefined
  6. #endif
  7. #ifndef TARGET_DEBUG
  8. # error TARGET_DEBUG is undefined
  9. #endif
  10. #if GLOBAL_DEBUG != BUILD_DEBUG
  11. # error GLOBAL_DEBUG does not match BUILD_DEBUG
  12. #endif
  13. #if TARGET_DEBUG != BUILD_DEBUG
  14. # error TARGET_DEBUG does not match BUILD_DEBUG
  15. #endif
  16. void some_symbol()
  17. {
  18. }