mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00
11 lines
428 B
Bash
Executable file
11 lines
428 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" ./cross/wasm_x86_i686.txt > /tmp/.wasm_cross.txt
|
|
meson -Db_lto=true -Ddefault_library=static -Dstatic=true -Dloaders="all" -Dsavers="all" -Dbindings="wasm_beta" --cross-file /tmp/.wasm_cross.txt build_wasm
|
|
fi
|
|
|
|
ninja -C build_wasm/
|
|
ls -lrt build_wasm/src/bindings/wasm/thorvg-wasm.*
|