StaticLibraryTarget.xcconfig 587 B

123456789101112131415161718
  1. //
  2. // StaticLibraryTarget.xcconfig
  3. //
  4. // These are static library target settings for libgtest.a. 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. // Static libs can be included in bundles so make them position independent
  10. GCC_DYNAMIC_NO_PIC = NO
  11. // Static libs should not have their internal globals or external symbols
  12. // stripped.
  13. STRIP_STYLE = debugging
  14. // Let the user install by specifying the $DSTROOT with xcodebuild
  15. SKIP_INSTALL = NO