mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 17:54:32 +00:00
- Moved prole-tools-app to prole-app at the project root to make it self-contained for transition to its own repository. - Created prole-tools-app/dist/ directory to host build artifacts. - Generated distribution artifacts (Prole Tools.app and Prole Tools.zip) using prole-app/build.sh package. - Checked in the generated artifacts to prole-tools-app/dist/ (bypassing .gitignore for temporary release process). Changes Summary • Renamed directory prole-tools-app/ to prole-app/. • Populated prole-tools-app/dist/ with the latest build output from prole-app/build.sh. • Staged all changes, including the forced addition of ignored artifacts in prole-tools-app/dist/.
37 lines
1.1 KiB
Swift
37 lines
1.1 KiB
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "ProleApp",
|
|
platforms: [
|
|
.macOS(.v12)
|
|
],
|
|
products: [
|
|
.executable(name: "Prole", targets: ["Prole"]) // App binary name
|
|
],
|
|
dependencies: [
|
|
// NozeIO SwiftNIO IRC Client
|
|
.package(url: "https://github.com/NozeIO/swift-nio-irc-client", branch: "main"),
|
|
// RoyalVNCKit via SwiftPM instead of local xcframework
|
|
.package(url: "https://github.com/royalapplications/royalvnc", branch: "main")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "Prole",
|
|
dependencies: [
|
|
.product(name: "IRC", package: "swift-nio-irc-client"),
|
|
.product(name: "RoyalVNCKit", package: "royalvnc")
|
|
],
|
|
path: "Sources",
|
|
resources: [
|
|
// The build script separately copies resources into the app bundle; no SPM resources here.
|
|
],
|
|
linkerSettings: [
|
|
.linkedFramework("AppKit"),
|
|
.linkedFramework("Carbon"),
|
|
.linkedFramework("Network")
|
|
]
|
|
)
|
|
]
|
|
)
|