mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
This commit contains only the result of `git add --renormalize .` `git show --ignore-space-change` can verify that this commit only changes whitespace.
12 lines
476 B
Batchfile
12 lines
476 B
Batchfile
set INPUT_DIR=../PortabilityLayer
|
|
set OUTPUT_DIR=obj
|
|
|
|
rem set DEBUG_LEVEL_FLAGS=-g4 -O0
|
|
set DEBUG_LEVEL_FLAGS=-O3 -DNDEBUG=1
|
|
|
|
set FLAGS=-s USE_ZLIB=1 -flto -I../GpCommon/ -I../Common/ -I../PortabilityLayer/ -I../rapidjson/include/ -I../MacRomanConversion/ -I../stb/ -s ASYNCIFY %DEBUG_LEVEL_FLAGS% -DGP_DEBUG_CONFIG=0 -Wno-tautological-constant-out-of-range-compare
|
|
|
|
emcc -c %INPUT_DIR%/PortabilityLayer_Combined.cpp -o %OUTPUT_DIR%/PortabilityLayer_Combined.o %FLAGS%
|
|
|
|
pause
|