egui/build_demo_web.sh

41 lines
1.1 KiB
Bash
Raw Normal View History

#!/bin/bash
set -eu
CRATE_NAME="egui_demo_app"
# This is required to enable the web_sys clipboard API which egui_web uses
# https://rustwasm.github.io/wasm-bindgen/api/web_sys/struct.Clipboard.html
# https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html
export RUSTFLAGS=--cfg=web_sys_unstable_apis
# Clear output from old stuff:
rm -f docs/${CRATE_NAME}_bg.wasm
echo "Building rust…"
BUILD=release
FEATURES="http,persistence,screen_reader"
(
cd egui_demo_app && cargo build \
-p ${CRATE_NAME} \
--release \
--lib \
--target wasm32-unknown-unknown \
--features ${FEATURES}
)
2018-12-23 23:15:18 +00:00
echo "Generating JS bindings for wasm…"
TARGET_NAME="${CRATE_NAME}.wasm"
2019-02-10 19:56:59 +00:00
wasm-bindgen "target/wasm32-unknown-unknown/$BUILD/$TARGET_NAME" \
--out-dir docs --no-modules --no-typescript
2020-04-23 07:50:03 +00:00
# brew install wabt # to get wasm-strip
2021-04-01 21:07:43 +00:00
# wasm-strip docs/${CRATE_NAME}_bg.wasm
2021-04-01 21:07:43 +00:00
echo "Optimizing wasm…"
# brew install binaryen # to get wasm-opt
wasm-opt docs/egui_demo_app_bg.wasm -O2 --fast-math -o docs/egui_demo_app_bg.wasm # add -g to get debug symbols
echo "Finished docs/${CRATE_NAME}_bg.wasm"
2020-11-17 22:24:14 +00:00
open http://localhost:8888/index.html