-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathPackage.swift
51 lines (49 loc) · 1.32 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "SwiftCompilerSources",
platforms: [
.macOS("10.9"),
],
products: [
.library(
name: "Swift",
type: .static,
targets: ["SIL", "Optimizer", "_CompilerRegexParser"]),
],
dependencies: [
],
// Note that all modules must be added to LIBSWIFT_MODULES in the top-level
// CMakeLists.txt file to get debugging working.
targets: [
.target(
name: "SIL",
dependencies: [],
swiftSettings: [SwiftSetting.unsafeFlags([
"-I", "../include/swift",
"-cross-module-optimization"
])]),
.target(
name: "_CompilerRegexParser",
dependencies: [],
path: "_RegexParser",
swiftSettings: [
.unsafeFlags([
"-I", "../include/swift",
"-cross-module-optimization",
]),
// Workaround until `_RegexParser` is imported as implementation-only
// by `_StringProcessing`.
.unsafeFlags([
"-Xfrontend",
"-disable-implicit-string-processing-module-import"
])]),
.target(
name: "Optimizer",
dependencies: ["SIL", "_CompilerRegexParser"],
swiftSettings: [SwiftSetting.unsafeFlags([
"-I", "../include/swift",
"-cross-module-optimization"
])]),
]
)