Skip to content

Commit

Permalink
Merge pull request #99 from eugenehp/visionos
Browse files Browse the repository at this point in the history
feat: Added visionOS support for Apple Vision Pro
  • Loading branch information
Byron committed Jun 4, 2024
2 parents 6e396da + df28e8b commit 1efa4cb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ use macos as os;
#[cfg(target_os = "ios")]
use ios as os;

#[cfg(target_os = "visionos")]
use ios as os;

#[cfg(target_os = "haiku")]
use haiku as os;

Expand Down Expand Up @@ -103,6 +106,7 @@ use unix as os;
target_os = "illumos",
target_os = "solaris",
target_os = "ios",
target_os = "visionos",
target_os = "macos",
target_os = "windows",
target_os = "haiku",
Expand Down Expand Up @@ -352,6 +356,9 @@ mod macos;
#[cfg(target_os = "ios")]
mod ios;

#[cfg(target_os = "visionos")]
mod ios;

#[cfg(target_os = "haiku")]
mod haiku;

Expand Down

0 comments on commit 1efa4cb

Please sign in to comment.