File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ public struct Destination: Encodable, Equatable {
238
238
}
239
239
return _sdkPlatformFrameworkPath
240
240
}
241
+
241
242
/// Cache storage for sdk platform path.
242
243
private static var _sdkPlatformFrameworkPath : ( fwk: AbsolutePath , lib: AbsolutePath ) ? = nil
243
244
@@ -299,10 +300,12 @@ extension Destination {
299
300
}
300
301
}
301
302
303
+ /// Version of the schema of `destination.json` files used for cross-compilation.
302
304
fileprivate struct VersionInfo : Codable {
303
305
let version : Int
304
306
}
305
307
308
+ /// Represents v1 schema of `destination.json` files used for cross-compilation.
306
309
fileprivate struct DestinationInfoV1 : Codable {
307
310
let target : String ?
308
311
let sdk : AbsolutePath ?
@@ -321,6 +324,7 @@ fileprivate struct DestinationInfoV1: Codable {
321
324
}
322
325
}
323
326
327
+ /// Represents v2 schema of `destination.json` files used for cross-compilation.
324
328
fileprivate struct DestinationInfoV2 : Codable {
325
329
let sdkRootDir : String
326
330
let toolchainBinDir : String
You can’t perform that action at this time.
0 commit comments