Skip to content

Commit 929d001

Browse files
authored
Add Mac Catalyst support (#55)
### Motivation Support the transport in Mac Catalyst apps. ### Modifications Add the platform requirement to Package.swift. ### Result Builds correctly for Mac Catalyst now. ### Test Plan Unit tests passed.
1 parent 79dfb2f commit 929d001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if ProcessInfo.processInfo.environment["SWIFT_OPENAPI_STRICT_CONCURRENCY"].flatM
3232
let package = Package(
3333
name: "swift-openapi-urlsession",
3434
platforms: [
35-
.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)
35+
.macOS(.v10_15), .macCatalyst(.v13), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)
3636
],
3737
products: [
3838
.library(

0 commit comments

Comments
 (0)