Officially remove the Emscripten backend (#1159)

This commit is contained in:
Osspial 2019-09-13 19:09:45 -04:00 committed by GitHub
parent 36f4eccb5c
commit 57a53bda74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 37 additions and 1650 deletions

View file

@ -21,9 +21,6 @@ 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"),
@ -35,6 +32,5 @@ mod platform;
not(target_os = "freebsd"),
not(target_os = "netbsd"),
not(target_os = "openbsd"),
not(target_os = "emscripten")
))]
compile_error!("The platform you're compiling for is not supported by winit");