mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
* support weak link to Swift Package dependency * update test for weak link * add changelog about Swift Package Dependency * Update CHANGELOG.md
39 lines
860 B
YAML
39 lines
860 B
YAML
name: SPM
|
|
packages:
|
|
Codability:
|
|
url: https://github.com/yonaskolb/Codability
|
|
majorVersion: 0.2.1
|
|
SwiftRoaring:
|
|
url: https://github.com/piotte13/SwiftRoaring
|
|
majorVersion: 1.0.4
|
|
XcodeGen:
|
|
path: ../../.. #XcodeGen itself
|
|
targets:
|
|
App:
|
|
type: application
|
|
platform: iOS
|
|
sources: [SPM]
|
|
scheme: {}
|
|
dependencies:
|
|
- package: Codability
|
|
weak: true
|
|
- package: SwiftRoaring
|
|
product: SwiftRoaringDynamic
|
|
embed: true
|
|
- target: StaticLibrary
|
|
Tests:
|
|
type: bundle.unit-test
|
|
platform: iOS
|
|
sources: [SPMTests]
|
|
dependencies:
|
|
- target: App
|
|
StaticLibrary:
|
|
type: library.static
|
|
platform: iOS
|
|
sources: StaticLibrary
|
|
dependencies:
|
|
- package: Codability
|
|
- package: SwiftRoaring
|
|
product: SwiftRoaringDynamic
|
|
- package: XcodeGen
|