blob: 6454acce19478938991e0c224783f975f5a8b52c (
plain)
1
2
3
4
|
#!/bin/sh
set -xeu -o pipefail
mkdir -p output
emcc -I./raylib/src libraylib.a -s USE_GLFW=3 -s ASYNCIFY --shell-file ./raylib/src/minshell.html main.c -DPLATFORM_WEB -o output/game.html
|