mirror of
https://github.com/BinomialLLC/basis_universal.git
synced 2026-08-06 21:39:08 +00:00
10 lines
201 B
Bash
Executable File
10 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
if ! emcc --version
|
|
then
|
|
echo "Emscripten not found on PATH. Please follow instructions on https://emscripten.org/docs/getting_started/downloads.html"
|
|
exit
|
|
fi
|
|
|
|
emcmake cmake .
|
|
emcmake make
|