-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
81 lines (79 loc) · 1.95 KB
/
Package.swift
File metadata and controls
81 lines (79 loc) · 1.95 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "EasyBar",
platforms: [
.macOS(.v14)
],
products: [
.library(name: "EasyBarShared", targets: ["EasyBarShared"]),
.library(name: "EasyBarNetworkAgentCore", targets: ["EasyBarNetworkAgentCore"]),
.executable(name: "EasyBar", targets: ["EasyBar"]),
.executable(name: "easybar", targets: ["EasyBarCtl"]),
.executable(name: "EasyBarCalendarAgent", targets: ["EasyBarCalendarAgent"]),
.executable(name: "EasyBarNetworkAgent", targets: ["EasyBarNetworkAgent"]),
],
dependencies: [
.package(url: "https://github.com/LebJe/TOMLKit", from: "0.6.0")
],
targets: [
.target(
name: "EasyBarShared",
dependencies: [
.product(name: "TOMLKit", package: "TOMLKit")
],
path: "Sources/EasyBarShared"
),
.target(
name: "EasyBarNetworkAgentCore",
dependencies: [
"EasyBarShared"
],
path: "Sources/EasyBarNetworkAgentCore"
),
.executableTarget(
name: "EasyBar",
dependencies: [
"EasyBarShared",
.product(name: "TOMLKit", package: "TOMLKit"),
],
path: "Sources/EasyBar",
exclude: [
"Info.plist"
],
resources: [
.copy("Lua/runtime.lua"),
.copy("Lua/easybar_api.lua"),
.copy("Lua/easybar"),
]
),
.executableTarget(
name: "EasyBarCtl",
dependencies: [
"EasyBarShared"
],
path: "Sources/EasyBarCtl"
),
.executableTarget(
name: "EasyBarCalendarAgent",
dependencies: [
"EasyBarShared"
],
path: "Sources/EasyBarCalendarAgent",
exclude: [
"Info.plist"
]
),
.executableTarget(
name: "EasyBarNetworkAgent",
dependencies: [
"EasyBarShared",
"EasyBarNetworkAgentCore",
],
path: "Sources/EasyBarNetworkAgent",
exclude: [
"Info.plist"
]
),
]
)