isomorphic-rust/web-view_wasm/app/build.rs

8 lines
197 B
Rust
Raw Normal View History

2018-08-26 00:59:17 -04:00
use std::process::Command;
fn main() {
Command::new("cargo")
.args(&["build", "target=wasm32-unknown-unknown"])
.spawn()
.expect("Unable to build WASM distribution");
}