forked from hebertialmeida/ModelGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
38 lines (36 loc) · 1.13 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
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "ModelGen",
products: [
.executable(name: "modelgen", targets: ["ModelGen"]),
.library(name: "ModelGenKit", targets: ["ModelGenKit"])
],
dependencies: [
.package(url: "https://github.com/kylef/Commander.git", from: "0.8.0"),
.package(url: "https://github.com/kylef/PathKit.git", from: "0.9.2"),
.package(url: "https://github.com/kylef/Stencil.git", from: "0.13.1"),
.package(url: "https://github.com/SwiftGen/StencilSwiftKit.git", from: "2.7.2"),
.package(url: "https://github.com/jpsim/Yams.git", from: "1.0.1"),
],
targets: [
.target(
name: "ModelGenKit",
dependencies: [
"Commander",
"PathKit",
"Stencil",
"StencilSwiftKit",
"Yams"
]
),
.target(
name: "ModelGen",
dependencies: ["ModelGenKit"]
),
.testTarget(
name: "ModelGenTests",
dependencies: ["ModelGenKit"]
)
]
)