mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-04-24 23:02:15 +00:00
8 lines
129 B
Rust
8 lines
129 B
Rust
extern crate cmake;
|
|
use cmake::Config;
|
|
|
|
fn main() {
|
|
let _dst = Config::new("wabt")
|
|
.define("BUILD_TESTS", "OFF")
|
|
.build();
|
|
} |