mirror of
https://github.com/tauri-apps/egui.git
synced 2026-01-31 00:45:20 +01:00
11 lines
250 B
Bash
11 lines
250 B
Bash
#!/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
|
|
|
|
# For generating JS bindings:
|
|
cargo install wasm-bindgen-cli --version 0.2.86
|