-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
24 lines (22 loc) · 864 Bytes
/
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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "xcc",
platforms: [.macOS(.v11)],
products: [.executable(name: "xcc", targets: ["xcc"])],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.2.0"),
.package(url: "https://github.com/finnvoor/appstoreconnect-swift-sdk.git", branch: "master"),
.package(url: "https://github.com/Finnvoor/SwiftTUI.git", from: "1.0.3")
],
targets: [
.executableTarget(
name: "xcc",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "AppStoreConnect-Swift-SDK", package: "AppStoreConnect-Swift-SDK"),
.product(name: "SwiftTUI", package: "SwiftTUI")
]
),
]
)