FrameworkTarget.xcconfig 551 B

1234567891011121314151617
  1. //
  2. // FrameworkTarget.xcconfig
  3. //
  4. // These are Framework target settings for the gtest framework and examples. It
  5. // is set in the "Based On:" dropdown in the "Target" info dialog.
  6. // This file is based on the Xcode Configuration files in:
  7. // https://github.com/google/google-toolbox-for-mac
  8. //
  9. // Dynamic libs need to be position independent
  10. GCC_DYNAMIC_NO_PIC = NO
  11. // Dynamic libs should not have their external symbols stripped.
  12. STRIP_STYLE = non-global
  13. // Let the user install by specifying the $DSTROOT with xcodebuild
  14. SKIP_INSTALL = NO