mirror of
https://github.com/speice-io/isomorphic-rust
synced 2024-11-14 12:08:57 -05:00
8 lines
197 B
Rust
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");
|
||
|
}
|