-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathPackage.swift
More file actions
31 lines (29 loc) · 1.43 KB
/
Package.swift
File metadata and controls
31 lines (29 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "skip-av",
defaultLocalization: "en",
platforms: [.iOS(.v16), .macOS(.v13), .tvOS(.v16), .watchOS(.v9), .macCatalyst(.v16)],
products: [
.library(name: "SkipAV", targets: ["SkipAV"]),
],
dependencies: [
.package(url: "https://source.skip.tools/skip.git", from: "1.6.36"),
.package(url: "https://source.skip.tools/skip-ui.git", from: "1.46.0")
],
targets: [
.target(name: "SkipAV", dependencies: [.product(name: "SkipUI", package: "skip-ui")], plugins: [.plugin(name: "skipstone", package: "skip")]),
.testTarget(name: "SkipAVTests", dependencies: ["SkipAV", .product(name: "SkipTest", package: "skip")], resources: [.process("Resources")], plugins: [.plugin(name: "skipstone", package: "skip")]),
]
)
if Context.environment["SKIP_BRIDGE"] ?? "0" != "0" {
package.dependencies += [.package(url: "https://source.skip.tools/skip-fuse-ui.git", from: "1.0.0")]
package.targets.forEach({ target in
target.dependencies += [.product(name: "SkipFuseUI", package: "skip-fuse-ui")]
})
// all library types must be dynamic to support bridging
package.products = package.products.map({ product in
guard let libraryProduct = product as? Product.Library else { return product }
return .library(name: libraryProduct.name, type: .dynamic, targets: libraryProduct.targets)
})
}