-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPackage.swift
35 lines (33 loc) · 1.37 KB
/
Package.swift
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
// swift-tools-version:5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "mendoza",
platforms: [
.macOS(.v13),
],
dependencies: [
.package(url: "https://github.com/kishikawakatsumi/KeychainAccess", branch: "master"),
.package(url: "https://github.com/Subito-it/Bariloche", branch: "master"),
.package(url: "https://github.com/Subito-it/Shout.git", branch: "mendoza/stable"),
.package(url: "https://github.com/Subito-it/XcodeProj.git", branch: "mendoza/stable"),
.package(url: "https://github.com/jpsim/SourceKitten.git", branch: "main"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", branch: "main"),
.package(url: "https://github.com/Subito-it/CachiKit", branch: "master"),
],
targets: [
.target(name: "BuildTools", path: "BuildTools"),
.executableTarget(
name: "mendoza",
dependencies: [
"Bariloche",
"CachiKit",
.product(name: "Shout", package: "Shout"),
// .product(name: "Shout-Static", package: "Shout"),
"XcodeProj",
"KeychainAccess",
.product(name: "SourceKittenFramework", package: "SourceKitten"),
]
),
]
)