-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (27 loc) · 965 Bytes
/
Package.swift
File metadata and controls
29 lines (27 loc) · 965 Bytes
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
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import CompilerPluginSupport
import PackageDescription
let package = Package(
name: "SakeApp",
platforms: [.macOS(.v10_15)], // Required by SwiftSyntax for the macro feature in Sake
products: [
.executable(name: "SakeApp", targets: ["SakeApp"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
.package(url: "https://github.com/kattouf/Sake", from: "0.1.0"),
.package(url: "https://github.com/kareman/SwiftShell", from: "5.1.0"),
],
targets: [
.executableTarget(
name: "SakeApp",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
"Sake",
"SwiftShell",
],
path: "."
),
]
)