mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
12 lines
216 B
Rust
12 lines
216 B
Rust
|
use std::env;
|
||
|
|
||
|
mod wasitests;
|
||
|
|
||
|
static WASITESTS_ENV_VAR: &str = "WASM_WASI_GENERATE_WASITESTS";
|
||
|
|
||
|
fn main() {
|
||
|
if env::var(WASITESTS_ENV_VAR).unwrap_or("0".to_string()) == "1" {
|
||
|
wasitests::build();
|
||
|
}
|
||
|
}
|