-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (28 loc) · 1.06 KB
/
Copy pathPackage.swift
File metadata and controls
29 lines (28 loc) · 1.06 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
// swift-tools-version: 6.2
import PackageDescription
let package = Package(
name: "NotchPal",
platforms: [.macOS(.v26)],
products: [
.executable(name: "NotchPal", targets: ["NotchPal"]),
.executable(name: "notchpal-report", targets: ["NotchPalReport"]),
.library(name: "NotchPalCore", targets: ["NotchPalCore"]),
],
dependencies: [
.package(url: "https://github.com/MrKai77/DynamicNotchKit", from: "1.1.0"),
],
targets: [
// Pure-Foundation core, shared by the app and the hook reporter.
// Deliberately free of SwiftUI/AppKit so `notchpal-report` stays tiny and fast to launch.
.target(name: "NotchPalCore"),
.executableTarget(name: "NotchPalReport", dependencies: ["NotchPalCore"]),
.executableTarget(
name: "NotchPal",
dependencies: [
"NotchPalCore",
.product(name: "DynamicNotchKit", package: "DynamicNotchKit"),
]
),
.testTarget(name: "NotchPalCoreTests", dependencies: ["NotchPalCore"]),
]
)