-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Package.swift
47 lines (45 loc) · 1.15 KB
/
Package.swift
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "Knob",
platforms: [.macOS(.v11), .iOS(.v13)],
products: [
.library(name: "Knob-iOS", targets: ["Knob-iOS"]),
.library(name: "Knob-macOS", targets: ["Knob-macOS"]),
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.11.0"),
],
targets: [
.target(
name: "Knob-iOS",
dependencies: [],
swiftSettings: [
.define("APPLICATION_EXTENSION_API_ONLY")
]
),
.target(
name: "Knob-macOS",
dependencies: [],
swiftSettings: [
.define("APPLICATION_EXTENSION_API_ONLY")
]
),
.testTarget(
name: "Knob-iOSTests",
dependencies: [
"Knob-iOS",
.product(name: "SnapshotTesting", package: "swift-snapshot-testing", condition: .none)
],
exclude: ["__Snapshots__"]
),
.testTarget(
name: "Knob-macOSTests",
dependencies: [
"Knob-macOS",
.product(name: "SnapshotTesting", package: "swift-snapshot-testing", condition: .none)
],
exclude: ["__Snapshots__"]
),
]
)