mirror of
https://github.com/terhechte/postsack
synced 2024-11-10 07:10:38 +00:00
047552a20a
This includes everything required to build a wasm target. It also separates the egui initialization into the separate postsack target for native
11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
# Pre-requisites:
|
|
rustup target add wasm32-unknown-unknown
|
|
cargo install -f wasm-bindgen-cli
|
|
cargo update -p wasm-bindgen
|
|
|
|
# For local tests with `./start_server`:
|
|
cargo install basic-http-server
|