-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
44 lines (42 loc) · 1.06 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
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "Workbench",
platforms: [
.macOS(.v14)
],
products: [],
dependencies: [
.package(url: "https://github.com/tuist/Path", from: "0.3.8"),
.package(url: "https://github.com/mxcl/Version", from: "2.1.0"),
// .package(url: "https://github.com/apple/swift-argument-parser", from: "1.5.0"),
// .package(url: "https://github.com/SwiftyLab/MetaCodable", from: "1.4.0"),
// .package(url: "https://github.com/tuist/Command", from: "0.9.32"),
],
targets: [
.executableTarget(
name: "Workbench",
dependencies: [
.target(name: "SysInfoKit"),
],
path: "src/Workbench/Sources"
),
.target(
name: "SystemDefaults",
path: "src/SystemDefaults/Sources"
),
.target(
name: "SysInfoKit",
dependencies: [
.product(name: "Path", package: "Path"),
.product(name: "Version", package: "Version"),
],
path: "src/SysInfoKit/Sources"
),
.testTarget(
name: "SysInfoKitTests",
dependencies: ["SysInfoKit"],
path: "src/SysInfoKit/Tests"
),
]
)