11 lines
211 B
Rust
Raw Normal View History

2019-01-10 21:37:59 -08:00
use std::env;
mod emtests;
2019-01-10 21:52:14 -08:00
static EMTESTS_ENV_VAR: &str = "WASM_EMSCRIPTEN_GENERATE_EMTESTS";
2019-01-10 21:37:59 -08:00
fn main() {
2019-01-10 21:52:14 -08:00
if env::var(EMTESTS_ENV_VAR).unwrap_or("0".to_string()) == "1" {
2019-01-10 21:37:59 -08:00
emtests::build();
}
}