Tests-Shared.xcconfig 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // Tests-Shared.xcconfig
  3. //
  4. // Generated by BuildSettingExtractor on 02/04/2018
  5. // https://github.com/dempseyatgithub/BuildSettingExtractor
  6. //
  7. // Always Embed Swift Standard Libraries
  8. //
  9. // Always embed the Swift standard libraries in the target's products, even if the target
  10. // does not contain any Swift code. For example, this should be enabled if the target is
  11. // embedding other products which contain Swift, or if it is a test target which does not
  12. // contain Swift but which is testing a product which does. This setting only applies to
  13. // wrapped products, not to standalone binary products.
  14. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
  15. // Header Search Paths
  16. //
  17. // This is a list of paths to folders to be searched by the compiler for included or
  18. // imported header files when compiling C, Objective-C, C++, or Objective-C++. Paths are
  19. // delimited by whitespace, so any paths with spaces in them need to be properly quoted.
  20. HEADER_SEARCH_PATHS = $(inherited) includes/**
  21. // Info.plist File
  22. //
  23. // The project-relative path to the property list file that contains the `Info.plist`
  24. // information used by bundles. For details on information property list files, see
  25. // [Information Property List
  26. // Files](https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/ConfigFiles.html#//apple_ref/doc/uid/20002091-CJBJIEDH)
  27. // in [Runtime Configuration
  28. // Guidelines](https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPRuntimeConfig/000-Introduction/introduction.html).
  29. INFOPLIST_FILE = Tests/${TARGET_NAME}/Info.plist
  30. // Runpath Search Paths
  31. //
  32. // This is a list of paths to be added to the `runpath` search path list for the image
  33. // being created. At runtime, `dyld` uses the `runpath` when searching for dylibs whose
  34. // load path begins with `@rpath/`. See [Dynamic Library Programming
  35. // Topics](https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/DynamicLibraries/000-Introduction/Introduction.html).
  36. LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks @loader_path/Frameworks @loader_path/../Frameworks @executable_path/../Frameworks
  37. // Product Bundle Identifier
  38. //
  39. // A string that uniquely identifies the bundle. The string should be in reverse DNS
  40. // format using only alphanumeric characters (`A-Z`, `a-z`, `0-9`), the dot (`.`), and
  41. // the hyphen (`-`). This value is used as the `CFBundleIdentifier` in the `Info.plist`
  42. // of the built bundle.
  43. PRODUCT_BUNDLE_IDENTIFIER = com.krzyzanowskim.${PRODUCT_NAME:rfc1034identifier}
  44. // Objective-C Bridging Header
  45. //
  46. // Path to the header defining the Objective-C interfaces to be exposed in Swift.
  47. SWIFT_OBJC_BRIDGING_HEADER = Tests/${TARGET_NAME}/Bridging.h