mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 15:13:12 -04:00
* this PR reverts https://github.com/emilk/egui/pull/4559 * and re-applies https://github.com/emilk/egui/pull/4433 Before we merge, we're waiting for a wgpu 0.20.1 patch-release of * https://github.com/gfx-rs/wgpu/pull/5681 --------- Co-authored-by: Andreas Reich <r_andreas2@web.de>
11 lines
258 B
Bash
Executable File
11 lines
258 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
|
|
|
|
# For generating JS bindings:
|
|
cargo install --quiet wasm-bindgen-cli --version 0.2.92
|