-
-
Notifications
You must be signed in to change notification settings - Fork 342
Expand file tree
/
Copy pathPackage.swift
More file actions
50 lines (49 loc) 路 1.33 KB
/
Copy pathPackage.swift
File metadata and controls
50 lines (49 loc) 路 1.33 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// swift-tools-version:6.3
import PackageDescription
let package = Package(
name: "Brightroom",
platforms: [
.iOS(.v17),
.macOS(.v14),
],
products: [
.library(name: "BrightroomParametric", targets: ["BrightroomParametric"]),
.library(name: "BrightroomEngine", targets: ["BrightroomEngine"]),
.library(name: "BrightroomUI", targets: ["BrightroomUI"]),
],
dependencies: [
.package(url: "https://github.com/VergeGroup/swift-state-graph", exact: "0.17.0"),
.package(url: "https://github.com/FluidGroup/TransitionPatch", from: "1.0.3"),
],
targets: [
.target(
name: "BrightroomParametric",
exclude: [
// Included by the compiled `.metal` sources; not a standalone package
// input.
"BrushStampFalloff.metalh"
]
),
.target(
name: "BrightroomEngine",
dependencies: [
"BrightroomParametric",
.product(name: "StateGraph", package: "swift-state-graph"),
]
),
.target(
name: "BrightroomUI",
dependencies: [
"BrightroomEngine",
"BrightroomParametric",
.product(name: "StateGraph", package: "swift-state-graph"),
"TransitionPatch",
]
),
.testTarget(
name: "BrightroomParametricTests",
dependencies: ["BrightroomParametric"]
),
],
swiftLanguageModes: [.v6]
)