-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
35 lines (34 loc) · 937 Bytes
/
Package.swift
File metadata and controls
35 lines (34 loc) · 937 Bytes
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
// swift-tools-version: 6.0
import PackageDescription
let package: Package = Package(
name: "ScenarioKit",
platforms: [
.macOS(.v14)
],
products: [
.executable(
name: "scenariokit",
targets: ["ScenarioKit"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
.package(url: "https://github.com/jpsim/Yams.git", from: "6.2.0")
],
targets: [
.executableTarget(
name: "ScenarioKit",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "Yams", package: "Yams")
],
resources: [
.process("Resources")
]
),
.testTarget(
name: "ScenarioKitTests",
dependencies: ["ScenarioKit"]
),
]
)