Update the emscripten port of glutin

This commit is contained in:
Pierre Krieger 2015-12-05 11:54:56 +01:00
parent 03ca5d5216
commit 982279bc39
8 changed files with 49 additions and 19 deletions

View file

@ -15,8 +15,11 @@ mod platform;
#[cfg(target_os = "ios")]
#[path="ios/mod.rs"]
mod platform;
#[cfg(target_os = "emscripten")]
#[path="emscripten/mod.rs"]
mod platform;
#[cfg(all(not(target_os = "ios"), not(target_os = "windows"), not(target_os = "linux"),
not(target_os = "macos"), not(target_os = "android"), not(target_os = "dragonfly"),
not(target_os = "freebsd")))]
not(target_os = "freebsd"), not(target_os = "emscripten")))]
use this_platform_is_not_supported;