You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
314 B
Batchfile
17 lines
314 B
Batchfile
@echo off
|
|
|
|
rmdir /S /q build_web
|
|
mkdir build_web
|
|
|
|
@REM set FLAGS=-fsanitize=undefined -fsanitize=address
|
|
set FLAGS=-O0 --source-map-base http://localhost:8000/ -g3 -gdwarf -DDEVTOOLS
|
|
set OUTPUT_FOLDER=build_web
|
|
|
|
call build_web_common.bat || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed to build
|
|
exit /B %ERRORLEVEL%
|