mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-04-29 00:52:16 +00:00
8 lines
111 B
Rust
8 lines
111 B
Rust
extern crate cmake;
|
|
use cmake::Config;
|
|
|
|
fn main() {
|
|
let _dst = Config::new("binaryen")
|
|
.build();
|
|
}
|