v4k-git-backup/demos/html5/MAKE.bat

24 lines
894 B
Batchfile
Raw Normal View History

2023-09-27 07:12:48 +00:00
if "%1"=="" MAKE.bat demo_ddraw.c
2023-08-10 14:30:56 +00:00
2023-08-10 20:34:20 +00:00
del index.html 2>NUL >NUL
del index.worker.js 2>NUL >NUL
del index.data 2>NUL >NUL
2023-08-10 14:30:56 +00:00
rem clone emscripten sdk
if not exist "emsdk" (
git clone https://github.com/emscripten-core/emsdk emsdk
pushd emsdk
call emsdk install 3.0.0 && rem latest
call emsdk activate 3.0.0 && rem latest
popd
)
if "%EMSDK%"=="" call emsdk\emsdk_env.bat --system
rem cook art
..\..\tools\cook.exe --cook-jobs=1 --cook-ini=..\..\tools\cook_web.ini
2023-08-10 14:30:56 +00:00
rem host webserver, compile and launch
rem start python -m http.server --bind 127.0.0.1 8000
2023-09-27 07:12:48 +00:00
call emcc %* -g ..\..\engine\v4k.c -I..\..\engine -o index.html -pthread -s FULL_ES3 -s USE_PTHREADS -s USE_GLFW=3 -s SINGLE_FILE=1 -s PRECISE_F32=1 -s TOTAL_MEMORY=256mb -s ALLOW_MEMORY_GROWTH=1 -s ENVIRONMENT=worker,web --shell-file template.html -Wfatal-errors --preload-file .art[00].zip@index.zip -lidbfs.js
rem emrun index.html