mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-04-28 06:59:37 +00:00
Caught in a fresh-clone smoke test: SwiftPM refused to build because
.process("../../Resources") pointed at an empty directory that git
does not track. The bundle has no assets to ship yet (icon will land
with signing work), so the reference is gone. Build passes on a clean
checkout and the packaging script produces the universal .app zip as
expected.
26 lines
663 B
Swift
26 lines
663 B
Swift
// swift-tools-version: 6.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "CodeBurnMenubar",
|
|
platforms: [
|
|
.macOS(.v14)
|
|
],
|
|
products: [
|
|
.executable(name: "CodeBurnMenubar", targets: ["CodeBurnMenubar"])
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "CodeBurnMenubar",
|
|
path: "Sources/CodeBurnMenubar",
|
|
swiftSettings: [
|
|
.enableUpcomingFeature("StrictConcurrency")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "CodeBurnMenubarTests",
|
|
dependencies: ["CodeBurnMenubar"],
|
|
path: "Tests/CodeBurnMenubarTests"
|
|
)
|
|
]
|
|
)
|