CryptoSwift-Shared.xcconfig 5.3 KB

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