mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00

the test hasn't been maintained properly, and we won't be maintaining it anymore. please use thorvg.viewer intead. it's much more accurate.
11 lines
436 B
Bash
Executable file
11 lines
436 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#https://github.com/thorvg/thorvg/wiki/ThorVG-Viewer-Development-Guide
|
|
|
|
if [ ! -d "./build_wasm" ]; then
|
|
sed "s|EMSDK:|$1|g" wasm_cross.txt > /tmp/.wasm_cross.txt
|
|
meson -Db_lto=true -Ddefault_library=static -Dstatic=true -Dloaders="all, lottie_beta" -Dsavers="all" -Dbindings="wasm" -Dlog=true --cross-file /tmp/.wasm_cross.txt build_wasm
|
|
fi
|
|
|
|
ninja -C build_wasm/
|
|
ls -lrt build_wasm/src/bindings/wasm/thorvg-wasm.*
|