mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 14:49:06 -04:00
9 lines
219 B
Bash
Executable File
9 lines
219 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
cd "$script_path/.."
|
|
|
|
# Pre-requisites:
|
|
rustup target add wasm32-unknown-unknown
|
|
cargo install wasm-bindgen-cli --version 0.2.84
|