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
297 B
Batchfile
12 lines
297 B
Batchfile
set INPUT_DIR=../MacRomanConversion
|
|
set OUTPUT_DIR=obj
|
|
|
|
rem set DEBUG_LEVEL_FLAGS=-g4 -O0
|
|
set DEBUG_LEVEL_FLAGS=-O3 -DNDEBUG=1
|
|
|
|
set FLAGS=-flto -I../MacRomanConversion/ -s ASYNCIFY %DEBUG_LEVEL_FLAGS%
|
|
|
|
emcc -c %INPUT_DIR%/MacRomanConversion.cpp -o %OUTPUT_DIR%/MacRomanConversion.o %FLAGS%
|
|
|
|
pause
|