mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
31 lines
530 B
Swift
31 lines
530 B
Swift
// swift-tools-version:5.3
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LaunchAtLogin",
|
|
platforms: [
|
|
.macOS(.v10_12)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "LaunchAtLogin",
|
|
targets: ["LaunchAtLogin"]
|
|
)
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "LaunchAtLogin",
|
|
exclude: [
|
|
"Info.plist",
|
|
"copy-helper.sh"
|
|
],
|
|
resources: [
|
|
.copy("LaunchAtLogin.entitlements"),
|
|
.copy("copy-helper-swiftpm.sh"),
|
|
.copy("LaunchAtLoginHelper.zip"),
|
|
.copy("LaunchAtLoginHelper-with-runtime.zip")
|
|
]
|
|
)
|
|
]
|
|
)
|