Created the Commanding package target in the Features package for controlling the recording flow from Live Activities.
This commit is contained in:
@@ -11,23 +11,40 @@ let package = Package(
|
||||
.visionOS(.v26),
|
||||
],
|
||||
products: [
|
||||
.library(
|
||||
name: "Commanding",
|
||||
targets: [
|
||||
"Commanding",
|
||||
]
|
||||
),
|
||||
.library(
|
||||
name: "Features",
|
||||
targets: [
|
||||
"Commanding",
|
||||
"Notifying",
|
||||
"Recording",
|
||||
]
|
||||
),
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "Commanding",
|
||||
path: "Sources/Commanding"
|
||||
),
|
||||
.target(
|
||||
name: "Notifying",
|
||||
path: "Sources/Notifying"
|
||||
),
|
||||
.target(
|
||||
name: "Recording",
|
||||
dependencies: ["Commanding"],
|
||||
path: "Sources/Recording"
|
||||
),
|
||||
.testTarget(
|
||||
name: "CommandingTests",
|
||||
dependencies: ["Commanding"],
|
||||
path: "Tests/Commanding"
|
||||
),
|
||||
.testTarget(
|
||||
name: "NotifyingTests",
|
||||
dependencies: ["Notifying"],
|
||||
|
||||
Reference in New Issue
Block a user