forked from swiftlang/swift-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
236 lines (218 loc) · 8.55 KB
/
Package.swift
File metadata and controls
236 lines (218 loc) · 8.55 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
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
// swift-tools-version: 6.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
import CompilerPluginSupport
// Availability Macros
let availabilityTags: [_Availability] = [
_Availability("FoundationPreview"), // Default FoundationPreview availability
]
let versionNumbers = ["6.0.2", "6.1", "6.2", "6.3", "6.4"]
// Availability Macro Utilities
enum _OSAvailability: String {
case alwaysAvailable = "macOS 26, iOS 26, tvOS 26, watchOS 26, visionOS 26" // This should match the package's deployment target
// Use 10000 for future availability to avoid compiler magic around the 9999 version number but ensure it is greater than 9999
case future = "macOS 10000, iOS 10000, tvOS 10000, watchOS 10000, visionOS 10000"
}
struct _Availability {
let name: String
let osAvailability: _OSAvailability
init(_ name: String, availability: _OSAvailability = .alwaysAvailable) {
self.name = name
self.osAvailability = availability
}
}
let availabilityMacros: [SwiftSetting] = versionNumbers.flatMap { version in
availabilityTags.map {
.enableExperimentalFeature("AvailabilityMacro=\($0.name) \(version):\($0.osAvailability.rawValue)")
}
}
let featureSettings: [SwiftSetting] = [
.enableExperimentalFeature("StrictConcurrency"),
.enableExperimentalFeature("ImportMacroAliases"),
.enableUpcomingFeature("InferSendableFromCaptures"),
.enableUpcomingFeature("MemberImportVisibility"),
.swiftLanguageMode(.v5)
]
var dependencies: [Package.Dependency] = []
if let useLocalDepsEnv = Context.environment["SWIFTCI_USE_LOCAL_DEPS"], !useLocalDepsEnv.isEmpty {
let root: String
if useLocalDepsEnv == "1" {
root = ".."
} else {
root = useLocalDepsEnv
}
dependencies +=
[
.package(
name: "swift-collections",
path: "\(root)/swift-collections"),
.package(
name: "swift-foundation-icu",
path: "\(root)/swift-foundation-icu"),
.package(
name: "swift-syntax",
path: "\(root)/swift-syntax")
]
} else {
// These dependencies should match `update-checkout`
// See `update-checkout-config.json` for the `main` branch-scheme
dependencies +=
[
.package(
url: "https://github.com/apple/swift-collections",
exact: "1.1.6"),
.package(
url: "https://github.com/apple/swift-foundation-icu",
branch: "main"),
.package(
url: "https://github.com/swiftlang/swift-syntax",
branch: "main")
]
}
let wasiLibcCSettings: [CSetting] = [
.define("_WASI_EMULATED_SIGNAL", .when(platforms: [.wasi])),
.define("_WASI_EMULATED_MMAN", .when(platforms: [.wasi])),
]
let testOnlySwiftSettings: [SwiftSetting] = [
.define("FOUNDATION_EXIT_TESTS", .when(platforms: [.macOS, .linux, .openbsd, .windows]))
]
let package = Package(
name: "swift-foundation",
platforms: [.macOS("26"), .iOS("26"), .tvOS("26"), .watchOS("26"), .visionOS("26")],
products: [
.library(name: "FoundationEssentials", targets: ["FoundationEssentials"]),
.library(name: "FoundationInternationalization", targets: ["FoundationInternationalization"]),
],
dependencies: dependencies,
targets: [
// _FoundationCShims (Internal)
.target(
name: "_FoundationCShims",
cSettings: [
.define("_CRT_SECURE_NO_WARNINGS", .when(platforms: [.windows]))
] + wasiLibcCSettings
),
// TestSupport (Internal)
.target(
name: "TestSupport",
path: "Tests/TestSupport",
cSettings: wasiLibcCSettings,
swiftSettings: availabilityMacros + featureSettings
),
// FoundationEssentials
.target(
name: "FoundationEssentials",
dependencies: [
"_FoundationCShims",
"FoundationMacros",
.product(name: "_RopeModule", package: "swift-collections"),
.product(name: "DequeModule", package: "swift-collections"),
.product(name: "OrderedCollections", package: "swift-collections"),
],
exclude: [
"Formatting/CMakeLists.txt",
"PropertyList/CMakeLists.txt",
"Decimal/CMakeLists.txt",
"String/CMakeLists.txt",
"Error/CMakeLists.txt",
"Locale/CMakeLists.txt",
"Data/CMakeLists.txt",
"TimeZone/CMakeLists.txt",
"JSON/CMakeLists.txt",
"AttributedString/CMakeLists.txt",
"Calendar/CMakeLists.txt",
"Predicate/CMakeLists.txt",
"CMakeLists.txt",
"ProcessInfo/CMakeLists.txt",
"FileManager/CMakeLists.txt",
"URL/CMakeLists.txt",
"NotificationCenter/CMakeLists.txt",
"ProgressManager/CMakeLists.txt",
],
cSettings: [
.define("_GNU_SOURCE", .when(platforms: [.linux]))
] + wasiLibcCSettings,
swiftSettings: [
.enableExperimentalFeature("VariadicGenerics"),
.enableExperimentalFeature("Lifetimes"),
.enableExperimentalFeature("AddressableTypes"),
.enableExperimentalFeature("AllowUnsafeAttribute"),
.enableExperimentalFeature("BuiltinModule"),
.enableExperimentalFeature("AccessLevelOnImport"),
.define("DATA_LEGACY_ABI", .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .visionOS]))
] + availabilityMacros + featureSettings,
linkerSettings: [
.linkedLibrary("wasi-emulated-getpid", .when(platforms: [.wasi])),
]
),
.testTarget(
name: "FoundationEssentialsTests",
dependencies: [
"TestSupport",
"FoundationEssentials"
],
resources: [
.copy("Resources")
],
swiftSettings: [
.define("DATA_LEGACY_ABI", .when(platforms: [.macOS, .iOS, .tvOS, .watchOS, .visionOS]))
] + availabilityMacros + featureSettings + testOnlySwiftSettings
),
// FoundationInternationalization
.target(
name: "FoundationInternationalization",
dependencies: [
.target(name: "FoundationEssentials"),
.target(name: "_FoundationCShims"),
.product(name: "_FoundationICU", package: "swift-foundation-icu")
],
exclude: [
"String/CMakeLists.txt",
"TimeZone/CMakeLists.txt",
"ICU/CMakeLists.txt",
"Formatting/CMakeLists.txt",
"Locale/CMakeLists.txt",
"Calendar/CMakeLists.txt",
"CMakeLists.txt",
"Predicate/CMakeLists.txt",
],
cSettings: wasiLibcCSettings,
swiftSettings: [
.enableExperimentalFeature("AccessLevelOnImport"),
.enableExperimentalFeature("Lifetimes"),
] + availabilityMacros + featureSettings
),
.testTarget(
name: "FoundationInternationalizationTests",
dependencies: [
"TestSupport",
"FoundationInternationalization",
],
swiftSettings: availabilityMacros + featureSettings + testOnlySwiftSettings
),
// FoundationMacros
.macro(
name: "FoundationMacros",
dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftOperators", package: "swift-syntax"),
.product(name: "SwiftParser", package: "swift-syntax"),
.product(name: "SwiftParserDiagnostics", package: "swift-syntax"),
.product(name: "SwiftCompilerPlugin", package: "swift-syntax"),
],
exclude: ["CMakeLists.txt"],
swiftSettings: [
.enableExperimentalFeature("AccessLevelOnImport")
] + availabilityMacros + featureSettings
),
.testTarget(
name: "FoundationMacrosTests",
dependencies: [
"FoundationMacros",
"FoundationEssentials"
],
swiftSettings: availabilityMacros + featureSettings + testOnlySwiftSettings
)
]
)