-
Notifications
You must be signed in to change notification settings - Fork 13
/
Package.swift
73 lines (71 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
70
71
72
73
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "silt",
platforms: [
.macOS(.v10_14)
],
dependencies: [
.package(url: "https://github.com/apple/swift-package-manager.git", from: "0.1.0"),
.package(url: "https://github.com/llvm-swift/FileCheck.git", from: "0.0.4"),
.package(url: "https://github.com/llvm-swift/Symbolic.git", from: "0.0.1"),
.package(url: "https://github.com/onevcat/Rainbow.git", from: "3.0.0"),
.package(url: "https://github.com/llvm-swift/LLVMSwift.git", .branch("master")),
.package(url: "https://github.com/llvm-swift/Lite.git", from: "0.1.0"),
.package(url: "https://github.com/llvm-swift/PrettyStackTrace.git", from: "0.0.1"),
],
targets: [
.target(
name: "Lithosphere",
dependencies: ["Rainbow"]),
.target(
name: "Crust",
dependencies: ["Lithosphere"]),
.target(
name: "Boring",
dependencies: ["Drill", "SPMUtility", "Mantle", "Seismography"]),
.target(
name: "Drill",
dependencies: [
"Lithosphere", "Crust", "Moho", "Mantle", "Seismography",
"Mesosphere", "OuterCore", "InnerCore", "SPMUtility"
]),
.target(
name: "silt",
dependencies: ["Boring", "SPMUtility"]),
.target(
name: "SyntaxGen",
dependencies: ["SPMUtility", "Lithosphere"]),
.target(
name: "lite",
dependencies: ["Symbolic", "LiteSupport", "silt", "SPMUtility"]),
.target(
name: "file-check",
dependencies: ["Drill", "FileCheck", "SPMUtility"]),
.target(
name: "Moho",
dependencies: ["Lithosphere", "Crust", "SPMUtility"]),
.target(
name: "Mantle",
dependencies: ["Lithosphere", "Moho", "SPMUtility", "PrettyStackTrace"]),
.target(
name: "Mesosphere",
dependencies: ["Mantle", "Seismography"]),
.target(
name: "OuterCore",
dependencies: ["Crust", "Seismography", "SPMUtility"]),
.target(
name: "Seismography",
dependencies: ["Moho", "Mantle", "Crust"]),
.target(
name: "InnerCore",
dependencies: ["Crust", "Seismography", "Mesosphere", "OuterCore", "LLVM"]),
.target(
name: "Ferrite",
dependencies: []),
.testTarget(
name: "InnerCoreSupportTests",
dependencies: ["InnerCore"]),
],
cxxLanguageStandard: .cxx14
)