forked from kenny1269/Scipio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
51 lines (49 loc) · 1.77 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Scipio",
platforms: [
.macOS(.v10_15)
],
products: [
.executable(name: "Scipio", targets: ["Scipio"])
],
dependencies: [
.package(url: "https://github.com/kylef/PathKit", from: "1.0.0"),
.package(url: "https://github.com/sharplet/Regex", from: "2.1.1"),
.package(url: "https://github.com/tsolomko/SWCompression.git", from: "4.6.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "0.4.4"),
.package(url: "https://github.com/thii/xcbeautify", from: "0.9.1"),
.package(name: "XcodeGen", url: "https://github.com/yonaskolb/XcodeGen", from: "2.24.0"),
.package(url: "https://github.com/tuist/XcodeProj", from: "8.0.0"),
.package(url: "https://github.com/jpsim/Yams", from: "4.0.6"),
.package(url: "https://github.com/marmelroy/Zip", from: "2.1.1"),
],
targets: [
.target(
name: "Scipio",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
"ScipioKit"
]
),
.target(
name: "ScipioKit",
dependencies: [
"PathKit",
"Regex",
"SWCompression",
.product(name: "XcbeautifyLib", package: "xcbeautify"),
.product(name: "XcodeGenKit", package: "XcodeGen"),
"XcodeProj",
"Yams",
"Zip",
]
),
.testTarget(
name: "ScipioTests",
dependencies: ["ScipioKit"]
),
]
)