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

8 lines
197 B
Rust

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