From 84703027d63e22361197a1fc74a4949becf5fccb Mon Sep 17 00:00:00 2001 From: Evgeny Rozaliev Date: Fri, 5 Jun 2015 16:38:21 +0300 Subject: [add] ios support --- src/platform/mod.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/platform/mod.rs') diff --git a/src/platform/mod.rs b/src/platform/mod.rs index 68ddfcc..c4b2265 100644 --- a/src/platform/mod.rs +++ b/src/platform/mod.rs @@ -12,6 +12,9 @@ mod platform; #[cfg(target_os = "android")] #[path="android/mod.rs"] mod platform; +#[cfg(target_os = "ios")] +#[path="ios/mod.rs"] +mod platform; -#[cfg(all(not(target_os = "windows"), not(target_os = "linux"), not(target_os = "macos"), not(target_os = "android")))] +#[cfg(all(not(target_os = "ios"), not(target_os = "windows"), not(target_os = "linux"), not(target_os = "macos"), not(target_os = "android")))] use this_platform_is_not_supported; -- cgit v1.2.3