forked from jordanbaird/Ice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
37 lines (35 loc) · 1.21 KB
/
Copy pathPackage.swift
File metadata and controls
37 lines (35 loc) · 1.21 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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "Ice",
platforms: [
.macOS(.v14),
],
products: [
.executable(name: "Ice", targets: ["Ice"]),
],
dependencies: [
.package(url: "https://github.com/sparkle-project/Sparkle", from: "2.5.2"),
.package(url: "https://github.com/sindresorhus/LaunchAtLogin-Modern", from: "1.0.0"),
.package(url: "https://github.com/tmandry/AXSwift", from: "0.3.2"),
.package(path: "Vendor/CompactSlider"),
.package(url: "https://github.com/ukushu/Ifrit", from: "2.0.3"),
],
targets: [
.executableTarget(
name: "Ice",
dependencies: [
.product(name: "Sparkle", package: "Sparkle"),
.product(name: "LaunchAtLogin", package: "LaunchAtLogin-Modern"),
.product(name: "AXSwift", package: "AXSwift"),
.product(name: "CompactSlider", package: "CompactSlider"),
.product(name: "IfritStatic", package: "Ifrit"),
],
path: "Ice",
resources: [
.process("Assets.xcassets"),
.process("Resources"),
]
),
]
)