-
Notifications
You must be signed in to change notification settings - Fork 9
/
Package.swift
executable file
·60 lines (59 loc) · 1.88 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
52
53
54
55
56
57
58
59
60
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "Fugen",
platforms: [
.macOS(.v10_12)
],
products: [
.executable(name: "fugen", targets: ["Fugen"]),
.library(name: "FugenTools", targets: ["FugenTools"]),
],
dependencies: [
.package(url: "https://github.com/jakeheis/SwiftCLI", from: "6.0.3"),
.package(url: "https://github.com/onevcat/Rainbow.git", from: "3.0.0"),
.package(url: "https://github.com/jpsim/Yams.git", from: "2.0.0"),
.package(url: "https://github.com/kylef/PathKit.git", from: "1.0.1"),
.package(url: "https://github.com/kylef/Stencil.git", from: "0.13.0"),
.package(url: "https://github.com/SwiftGen/StencilSwiftKit.git", from: "2.7.2"),
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.8.0"),
.package(url: "https://github.com/almazrafi/DictionaryCoder.git", from: "1.0.0")
],
targets: [
.target(
name: "Fugen",
dependencies: [
"Yams",
"SwiftCLI",
"Rainbow",
"PathKit",
"Stencil",
"StencilSwiftKit",
"PromiseKit",
"DictionaryCoder",
"FugenTools"
],
path: "Sources/Fugen"
),
.target(
name: "FugenTools",
dependencies: [
"SwiftCLI",
"PathKit",
"PromiseKit"
],
path: "Sources/FugenTools"
),
.testTarget(
name: "FugenTests",
dependencies: ["Fugen"],
path: "Tests/FugenTests"
),
.testTarget(
name: "FugenToolsTests",
dependencies: ["FugenTools"],
path: "Tests/FugenToolsTests"
)
],
swiftLanguageVersions: [.v5]
)