CryptoSwift-Shared.xcconfig 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. //
  2. // CryptoSwift-Shared.xcconfig
  3. //
  4. // Generated by BuildSettingExtractor on 02/04/2018
  5. // https://github.com/dempseyatgithub/BuildSettingExtractor
  6. //
  7. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES
  8. // Require Only App-Extension-Safe API
  9. //
  10. // When enabled, this causes the compiler and linker to disallow use of APIs that are not
  11. // available to app extensions and to disallow linking to frameworks that have not been
  12. // built with this setting enabled.
  13. APPLICATION_EXTENSION_API_ONLY = YES
  14. // Compatibility Version
  15. //
  16. // Determines the compatibility version of the resulting library, bundle, or framework
  17. // binary. See [Dynamic Library Design
  18. // Guidelines](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html#//apple_ref/doc/uid/TP40002013-SW19)
  19. // in [Dynamic Library Programming
  20. // Topics](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/DynamicLibraries/000-Introduction/Introduction.html)
  21. // for details on assigning version numbers of dynamic libraries.
  22. DYLIB_COMPATIBILITY_VERSION = 1
  23. // Current Library Version
  24. //
  25. // This setting defines the current version of any framework built by the project. As
  26. // with `CURRENT_PROJECT_VERSION`, the value must be an integer or floating point number,
  27. // such as `57` or `365.8`. By default, it is set to `$(CURRENT_PROJECT_VERSION)`. See
  28. // [Dynamic Library Design
  29. // Guidelines](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html#//apple_ref/doc/uid/TP40002013-SW19)
  30. // in [Dynamic Library Programming
  31. // Topics](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/DynamicLibraries/000-Introduction/Introduction.html)
  32. // for details on assigning version numbers of dynamic libraries.
  33. DYLIB_CURRENT_VERSION = 1
  34. // Dynamic Library Install Name Base
  35. //
  36. // Sets the base value for the internal `install path` (`LC_ID_DYLIB`) in a dynamic
  37. // library. This will be combined with the `EXECUTABLE_PATH` to form the full install
  38. // path. Setting `LD_DYLIB_INSTALL_NAME` directly will override this setting. This
  39. // setting defaults to the target's `INSTALL_PATH`. It is ignored when building any
  40. // product other than a dynamic library.
  41. DYLIB_INSTALL_NAME_BASE = @rpath
  42. // Enable Bitcode
  43. //
  44. // Activating this setting indicates that the target or project should generate bitcode
  45. // during compilation for platforms and architectures that support it. For Archive
  46. // builds, bitcode will be generated in the linked binary for submission to the App
  47. // Store. For other builds, the compiler and linker will check whether the code complies
  48. // with the requirements for bitcode generation, but will not generate actual bitcode.
  49. ENABLE_BITCODE = YES
  50. // Enable Bitcode
  51. //
  52. // Activating this setting indicates that the target or project should generate bitcode
  53. // during compilation for platforms and architectures that support it. For Archive
  54. // builds, bitcode will be generated in the linked binary for submission to the App
  55. // Store. For other builds, the compiler and linker will check whether the code complies
  56. // with the requirements for bitcode generation, but will not generate actual bitcode.
  57. ENABLE_BITCODE[sdk=macosx*] = NO
  58. // Installation Directory
  59. //
  60. // The directory in which to install the build products. This path is prepended by the
  61. // `DSTROOT`.
  62. INSTALL_PATH = $(LOCAL_LIBRARY_DIR)/Frameworks
  63. // Runpath Search Paths
  64. //
  65. // This is a list of paths to be added to the `runpath` search path list for the image
  66. // being created. At runtime, `dyld` uses the `runpath` when searching for dylibs whose
  67. // load path begins with `@rpath/`. See [Dynamic Library Programming
  68. // Topics](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/DynamicLibraries/000-Introduction/Introduction.html).
  69. LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks @loader_path/Frameworks
  70. // Info.plist File
  71. //
  72. // The project-relative path to the property list file that contains the `Info.plist`
  73. // information used by bundles. For details on information property list files, see
  74. // [Information Property List
  75. // Files](https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/ConfigFiles.html#//apple_ref/doc/uid/20002091-CJBJIEDH)
  76. // in [Runtime Configuration
  77. // Guidelines](https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPRuntimeConfig/000-Introduction/introduction.html).
  78. INFOPLIST_FILE = Sources/CryptoSwift/Info.plist
  79. // Product Bundle Identifier
  80. //
  81. // A string that uniquely identifies the bundle. The string should be in reverse DNS
  82. // format using only alphanumeric characters (`A-Z`, `a-z`, `0-9`), the dot (`.`), and
  83. // the hyphen (`-`). This value is used as the `CFBundleIdentifier` in the `Info.plist`
  84. // of the built bundle.
  85. PRODUCT_BUNDLE_IDENTIFIER = com.krzyzanowskim.${PRODUCT_NAME:rfc1034identifier}
  86. // Product Name
  87. //
  88. // This is the basename of the product generated by the target.
  89. PRODUCT_NAME = $(TARGET_NAME)
  90. // Skip Install
  91. //
  92. // If enabled, don't install built products even if deployment locations are active.
  93. SKIP_INSTALL = YES
  94. // Swift Language Version
  95. //
  96. //
  97. SWIFT_VERSION = 5.0
  98. TVOS_DEPLOYMENT_TARGET = 9.0
  99. WATCHOS_DEPLOYMENT_TARGET = 2.0