forked from cschuman/Parchment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
56 lines (55 loc) · 1.65 KB
/
Package.swift
File metadata and controls
56 lines (55 loc) · 1.65 KB
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
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "Parchment",
platforms: [
.macOS(.v13)
],
products: [
.executable(
name: "Parchment",
targets: ["Parchment"]
),
.executable(
name: "parchment",
targets: ["ParchmentCLI"]
),
.executable(
name: "TestParser",
targets: ["TestParser"]
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-markdown.git", from: "0.3.0"),
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.3.0"),
.package(url: "https://github.com/apple/swift-syntax.git", from: "509.0.0"),
],
targets: [
.executableTarget(
name: "Parchment",
dependencies: [
.product(name: "Markdown", package: "swift-markdown"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "SwiftSyntax", package: "swift-syntax"),
]
),
.executableTarget(
name: "ParchmentCLI",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]
),
.executableTarget(
name: "TestParser",
dependencies: [
.product(name: "Markdown", package: "swift-markdown"),
],
path: "Tests/TestParser"
),
.testTarget(
name: "ParchmentTests",
dependencies: ["Parchment"],
path: "Tests/ParchmentTests"
),
]
)