Skip to content

Commit

Permalink
Merge pull request #99 from finestructure/support-visionOS
Browse files Browse the repository at this point in the history
Add support for visionOS in the package manifest
  • Loading branch information
finestructure authored Nov 14, 2023
2 parents 731f54d + 403d15a commit 6ce0ff3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Sources/ArenaCore/Manifest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ struct Manifest: Decodable, Equatable {
case maccatalyst
case ios
case tvos
case visionos
case watchos
}
var platformName: Name
Expand Down
2 changes: 2 additions & 0 deletions Sources/ArenaCore/PackageGenerator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ private extension Manifest.Platform {
return "macOS"
case .tvos:
return "tvOS"
case .visionos:
return "visionOS"
case .watchos:
return "watchOS"
}
Expand Down

0 comments on commit 6ce0ff3

Please sign in to comment.