Skip to content

Commit

Permalink
Add support for iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Molloy authored and soc committed Jul 12, 2019
1 parent 9870d69 commit 1c273d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cfg_if! {
if #[cfg(target_os = "windows")] {
mod win;
use win as sys;
} else if #[cfg(target_os = "macos")] {
} else if #[cfg(any(target_os = "macos", target_os = "ios"))] {
mod mac;
use mac as sys;
} else if #[cfg(target_os = "wasi")] {
Expand Down

0 comments on commit 1c273d9

Please sign in to comment.