Skip to content

Commit

Permalink
Add Apple visionOS support (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinPerez committed Apr 17, 2024
1 parent a39033a commit 0d55923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -299,7 +299,7 @@ cfg_if! {
#[path = "dragonfly.rs"] mod imp;
} else if #[cfg(target_os = "fuchsia")] {
#[path = "fuchsia.rs"] mod imp;
} else if #[cfg(any(target_os = "ios", target_os = "watchos", target_os = "tvos"))] {
} else if #[cfg(any(target_os = "ios", target_os = "visionos", target_os = "watchos", target_os = "tvos"))] {
#[path = "apple-other.rs"] mod imp;
} else if #[cfg(target_os = "macos")] {
mod util_libc;
Expand Down

0 comments on commit 0d55923

Please sign in to comment.