1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00
Files
egui/scripts/setup_web.sh
2025-10-08 17:09:04 +02:00

16 lines
431 B
Bash
Executable File

#!/usr/bin/env bash
set -eu
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
cd "$script_path/.."
set -x
# Pre-requisites:
rustup target add wasm32-unknown-unknown
# For generating JS bindings:
# Keep wasm-bindgen in sync in: setup_web.sh, Cargo.toml, Cargo.lock, rust.yml
if ! cargo install --list | grep -q 'wasm-bindgen-cli v0.2.104'; then
cargo install --force --quiet wasm-bindgen-cli --version 0.2.104
fi