-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
270 lines (247 loc) · 9.46 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
// swift-tools-version:4.2
/*
This source file is part of the Swift.org open source project
Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import PackageDescription
let package = Package(
name: "SwiftPM",
products: [
// The `libSwiftPM` set of interfaces to programatically work with Swift
// packages.
//
// NOTE: This API is *unstable* and may change at any time.
.library(
name: "SwiftPM",
type: .dynamic,
targets: [
"clibc",
"SPMLibc",
"Basic",
"SPMUtility",
"SourceControl",
"SPMLLBuild",
"PackageModel",
"PackageLoading",
"PackageGraph",
"Build",
"Xcodeproj",
"Workspace"
]
),
.library(
name: "SwiftPM-auto",
targets: [
"clibc",
"SPMLibc",
"Basic",
"SPMUtility",
"SourceControl",
"SPMLLBuild",
"PackageModel",
"PackageLoading",
"PackageGraph",
"Build",
"Xcodeproj",
"Workspace"
]
),
// Collection of general purpose utilities.
//
// NOTE: This product consists of *unsupported*, *unstable* API. These
// APIs are implementation details of the package manager. Depend on it
// at your own risk.
.library(
name: "SPMUtility",
targets: [
"clibc",
"SPMLibc",
"Basic",
"SPMUtility",
]
),
],
targets: [
// The `PackageDescription` targets are special, they define the API which
// is available to the `Package.swift` manifest files.
.target(
/** Package Definition API version 4 */
name: "PackageDescription4",
dependencies: []),
// MARK: Support libraries
.target(
/** Shim target to import missing C headers in Darwin and Glibc modulemap. */
name: "clibc",
dependencies: []),
.target(
/** Cross-platform access to bare `libc` functionality. */
name: "SPMLibc",
dependencies: ["clibc"]),
.target(
/** Basic support library */
name: "Basic",
dependencies: ["SPMLibc"]),
.target(
/** Abstractions for common operations, should migrate to Basic */
name: "SPMUtility",
dependencies: ["Basic"]),
.target(
/** Source control operations */
name: "SourceControl",
dependencies: ["Basic", "SPMUtility"]),
.target(
/** Shim for llbuild library */
name: "SPMLLBuild",
dependencies: ["Basic", "SPMUtility"]),
// MARK: Project Model
.target(
/** Primitive Package model objects */
name: "PackageModel",
dependencies: ["Basic", "SPMUtility"]),
.target(
/** Package model conventions and loading support */
name: "PackageLoading",
dependencies: ["Basic", "PackageModel", "SPMUtility", "SPMLLBuild"]),
// MARK: Package Dependency Resolution
.target(
/** Data structures and support for complete package graphs */
name: "PackageGraph",
dependencies: ["Basic", "PackageLoading", "PackageModel", "SourceControl", "SPMUtility"]),
// MARK: Package Manager Functionality
.target(
/** Builds Modules and Products */
name: "Build",
dependencies: ["Basic", "PackageGraph"]),
.target(
/** Generates Xcode projects */
name: "Xcodeproj",
dependencies: ["Basic", "PackageGraph"]),
.target(
/** High level functionality */
name: "Workspace",
dependencies: ["Basic", "Build", "PackageGraph", "PackageModel", "SourceControl", "Xcodeproj"]),
// MARK: Commands
.target(
/** High-level commands */
name: "Commands",
dependencies: ["Basic", "Build", "PackageGraph", "SourceControl", "SPMUtility", "Xcodeproj", "Workspace"]),
.target(
/** The main executable provided by SwiftPM */
name: "swift-package",
dependencies: ["Commands"]),
.target(
/** Builds packages */
name: "swift-build",
dependencies: ["Commands"]),
.target(
/** Runs package tests */
name: "swift-test",
dependencies: ["Commands"]),
.target(
/** Runs an executable product */
name: "swift-run",
dependencies: ["Commands"]),
.target(
/** Shim tool to find test names on OS X */
name: "swiftpm-xctest-helper",
dependencies: []),
// MARK: Additional Test Dependencies
.target(
/** Test support library */
name: "TestSupport",
dependencies: ["Basic", "PackageGraph", "PackageLoading", "SourceControl", "SPMUtility", "Commands"]),
.target(
/** Test support executable */
name: "TestSupportExecutable",
dependencies: ["Basic", "SPMUtility"]),
.testTarget(
name: "BasicTests",
dependencies: ["TestSupport", "TestSupportExecutable"]),
.testTarget(
name: "BasicPerformanceTests",
dependencies: ["Basic", "TestSupport"]),
.testTarget(
name: "BuildTests",
dependencies: ["Build", "TestSupport"]),
.testTarget(
name: "CommandsTests",
dependencies: ["swift-build", "swift-package", "swift-test", "swift-run", "Commands", "Workspace", "TestSupport"]),
.testTarget(
name: "WorkspaceTests",
dependencies: ["Workspace", "TestSupport"]),
.testTarget(
name: "FunctionalTests",
dependencies: ["swift-build", "swift-package", "swift-test", "Basic", "SPMUtility", "PackageModel", "TestSupport"]),
.testTarget(
name: "FunctionalPerformanceTests",
dependencies: ["swift-build", "swift-package", "swift-test", "TestSupport"]),
.testTarget(
name: "PackageDescription4Tests",
dependencies: ["PackageDescription4"]),
.testTarget(
name: "PackageLoadingTests",
dependencies: ["PackageLoading", "TestSupport"],
exclude: ["Inputs"]),
.testTarget(
name: "PackageLoadingPerformanceTests",
dependencies: ["PackageLoading", "TestSupport"]),
.testTarget(
name: "PackageModelTests",
dependencies: ["PackageModel"]),
.testTarget(
name: "PackageGraphTests",
dependencies: ["PackageGraph", "TestSupport"]),
.testTarget(
name: "PackageGraphPerformanceTests",
dependencies: ["PackageGraph", "TestSupport"]),
.testTarget(
name: "SourceControlTests",
dependencies: ["SourceControl", "TestSupport"]),
.testTarget(
name: "TestSupportTests",
dependencies: ["TestSupport"]),
.testTarget(
name: "UtilityTests",
dependencies: ["SPMUtility", "TestSupport", "TestSupportExecutable"]),
.testTarget(
name: "XcodeprojTests",
dependencies: ["Xcodeproj", "TestSupport"]),
],
swiftLanguageVersions: [.v4_2]
)
// Add package dependency on llbuild when not bootstrapping.
//
// When bootstrapping SwiftPM, we can't use llbuild as a package dependency it
// will provided by whatever build system (SwiftCI, bootstrap script) is driving
// the build process. So, we only add these dependencies if SwiftPM is being
// built directly using SwiftPM. It is a bit unfortunate that we've add the
// package dependency like this but there is no other good way of expressing
// this right now.
import class Foundation.ProcessInfo
if ProcessInfo.processInfo.environment["SWIFTPM_BOOTSTRAP"] == nil {
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
package.dependencies += [
.package(url: "https://github.com/apple/swift-llbuild.git", .branch("master")),
]
} else {
// In Swift CI, use a local path to llbuild to interoperate with tools
// like `update-checkout`, which control the sources externally.
package.dependencies += [
.package(path: "../llbuild"),
]
}
package.targets.first(where: { $0.name == "SPMLLBuild" })!.dependencies += ["llbuildSwift"]
}
if ProcessInfo.processInfo.environment["SWIFTPM_BUILD_PACKAGE_EDITOR"] != nil {
package.targets += [
.target(name: "SPMPackageEditor", dependencies: ["Workspace", "SwiftSyntax"]),
.target(name: "swiftpm-manifest-tool", dependencies: ["SPMPackageEditor"]),
.testTarget(name: "SPMPackageEditorTests", dependencies: ["SPMPackageEditor", "TestSupport"]),
]
package.dependencies += [
.package(path: "../swift-syntax"),
]
}