1
0
mirror of https://github.com/fluencelabs/parity-wasm synced 2025-05-04 19:42:15 +00:00

8 lines
129 B
Rust
Raw Permalink Normal View History

2017-06-03 17:45:03 +03:00
extern crate cmake;
use cmake::Config;
fn main() {
let _dst = Config::new("wabt")
.define("BUILD_TESTS", "OFF")
.build();
}