mirror of
https://github.com/speice-io/isomorphic-rust
synced 2024-11-14 03:58:38 -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");
|
|
} |