Files
VEFontCache-Odin/thirdparty/sokol/build_clibs_wasm.bat
2025-04-14 14:49:36 -04:00

20 lines
516 B
Batchfile

@echo off
set sources=log app gfx glue time audio debugtext shape gl
REM Debug
for %%s in (%sources%) do (
echo %%s\sokol_%%s_wasm_gl_debug.a
call emcc -c -g -DIMPL -DSOKOL_GLES3 c\sokol_%%s.c
call emar rcs %%s\sokol_%%s_wasm_gl_debug.a sokol_%%s.o
del sokol_%%s.o
)
REM Release
for %%s in (%sources%) do (
echo %%s\sokol_%%s_wasm_gl_release.a
call emcc -c -O2 -DNDEBUG -DIMPL -DSOKOL_GLES3 c\sokol_%%s.c
call emar rcs %%s\sokol_%%s_wasm_gl_release.a sokol_%%s.o
del sokol_%%s.o
)