Files
freddi(Yuki Aki)andGitHub 56f943ec01 Support weak link for Swift Package Dependency (#1064)
* support weak link to Swift Package dependency

* update test for weak link

* add changelog about Swift Package Dependency

* Update CHANGELOG.md
2021-05-01 13:09:19 +10:00

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