-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
92 lines (82 loc) · 1.6 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "Lexicon",
platforms: [
.macOS(.v11),
.iOS(.v14)
],
products: [
.library(name: "Lexicon", targets: ["Lexicon"]),
.library(name: "SwiftLexicon", targets: ["SwiftLexicon"]),
.library(name: "SwiftStandAlone", targets: ["SwiftStandAlone"]),
.library(name: "LexiconGenerators", targets: ["LexiconGenerators"]),
],
dependencies: [
.package(url: "https://github.com/screensailor/Hope", .branch("trunk")),
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0"),
],
targets: [
// MARK: Lexicon
.target(
name: "Lexicon",
dependencies: [
.product(name: "Collections", package: "swift-collections")
],
swiftSettings: [.define("EDITOR")] // TODO: meke this opt in
),
.testTarget(
name: "LexiconTests",
dependencies: [
"Hope",
"Lexicon"
],
resources: [
.copy("Resources")
]
),
// MARK: LexiconGenerators
.target(
name: "LexiconGenerators",
dependencies: [
"Lexicon",
"SwiftLexicon",
"SwiftStandAlone",
]
),
// MARK: SwiftLexicon
.target(
name: "SwiftLexicon",
dependencies: [
"Lexicon",
]
),
.testTarget(
name: "SwiftLexiconTests",
dependencies: [
"Hope",
"SwiftLexicon"
],
resources: [
.copy("Resources"),
]
),
// MARK:
.target(
name: "SwiftStandAlone",
dependencies: [
"Lexicon",
]
),
.testTarget(
name: "SwiftStandAloneTests",
dependencies: [
"Hope",
"SwiftStandAlone"
],
resources: [
.copy("Resources"),
]
),
]
)