20 lines
565 B
Bash
20 lines
565 B
Bash
emcc -O3 src/main.c -o app.html -sUSE_WEBGPU -sWASM_BIGINT -sALLOW_MEMORY_GROWTH -I../sokol -I../sokol_gp -I../cimgui -msimd128 -flto --llvm-lto 1 --shell-file=shell.html -sFILESYSTEM=0
|
|
|
|
emcc -O3 src/main.c \
|
|
../cimgui/cimgui.cpp \
|
|
../cimgui/imgui.cpp \
|
|
../cimgui/imgui_draw.cpp \
|
|
../cimgui/imgui_tables.cpp \
|
|
../cimgui/imgui_widgets.cpp \
|
|
-o app.html \
|
|
-sUSE_WEBGPU \
|
|
-sWASM_BIGINT \
|
|
-sALLOW_MEMORY_GROWTH \
|
|
-I../sokol \
|
|
-I../sokol_gp \
|
|
-I../cimgui \
|
|
-I../flecs/distr \
|
|
-msimd128 \
|
|
-flto \
|
|
--shell-file=shell.html \
|
|
-sFILESYSTEM=0 |