KeychainAccess.xcconfig 900 B

123456789101112131415161718
  1. SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator watchos watchsimulator appletvos appletvsimulator;
  2. TARGETED_DEVICE_FAMILY = "1,2,3,4";
  3. PRODUCT_BUNDLE_IDENTIFIER = com.kishikawakatsumi.$(PRODUCT_NAME:rfc1034identifier)
  4. PRODUCT_NAME=$(PROJECT_NAME)
  5. APPLICATION_EXTENSION_API_ONLY = YES;
  6. INFOPLIST_FILE = KeychainAccess/Info.plist;
  7. SKIP_INSTALL = YES;
  8. DEFINES_MODULE = YES;
  9. DYLIB_COMPATIBILITY_VERSION = 1;
  10. DYLIB_CURRENT_VERSION = 1;
  11. DYLIB_INSTALL_NAME_BASE = @rpath;
  12. LD_RUNPATH_SEARCH_PATHS[sdk=macosx*] = $(inherited) @executable_path/../Frameworks @loader_path/../Frameworks;
  13. LD_RUNPATH_SEARCH_PATHS[sdk=iphone*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks;
  14. LD_RUNPATH_SEARCH_PATHS[sdk=watch*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks;
  15. LD_RUNPATH_SEARCH_PATHS[sdk=appletv*] = $(inherited) @executable_path/Frameworks @loader_path/Frameworks;