-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
45 lines (44 loc) · 1.47 KB
/
Copy pathPackage.swift
File metadata and controls
45 lines (44 loc) · 1.47 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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "GhostTile",
platforms: [.macOS("15.0")],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser", exact: "1.7.0"),
.package(
url: "https://github.com/hewigovens/LSAppCategory",
revision: "fe8edb78aaa41206e1a98b9bfbd0b0f26ed625c9"
),
.package(url: "https://github.com/sindresorhus/KeyboardShortcuts", exact: "2.4.0"),
.package(url: "https://github.com/sparkle-project/Sparkle", exact: "2.9.0"),
],
targets: [
.target(name: "GhostTileCore"),
.executableTarget(
name: "ghosttile",
dependencies: [
"GhostTileCore",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.executableTarget(
name: "GhostTileApp",
dependencies: [
"GhostTileCore",
"LSAppCategory",
.product(name: "KeyboardShortcuts", package: "KeyboardShortcuts"),
.product(name: "Sparkle", package: "Sparkle"),
],
exclude: ["app.icon"]
),
.testTarget(
name: "GhostTileCoreTests",
dependencies: ["GhostTileCore"],
exclude: ["Resources"]
),
.testTarget(
name: "GhostTileAppTests",
dependencies: ["GhostTileApp"]
),
]
)