-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPackage.swift
More file actions
26 lines (24 loc) · 612 Bytes
/
Copy pathPackage.swift
File metadata and controls
26 lines (24 loc) · 612 Bytes
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
// swift-tools-version:4.0
import PackageDescription
let package = Package(
name: "slox",
products: [
.executable(
name: "slox",
targets: ["slox"]),
.executable(
name: "GenerateAst",
targets: ["GenerateAst"]),
],
dependencies: [
.package(url: "https://github.com/antitypical/Result.git", from: "3.2.4")
],
targets: [
.target(
name: "slox",
dependencies: ["LoxCore"]
),
.target(name: "LoxCore", dependencies: ["Result"]),
.target(name: "GenerateAst")
]
)