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.
22 lines
302 B
Batchfile
22 lines
302 B
Batchfile
@echo off
|
|
|
|
pushd %~dp0%
|
|
|
|
rmdir /S /q build_web_release
|
|
mkdir build_web_release
|
|
|
|
set FLAGS=-O0 -DNDEBUG
|
|
set OUTPUT_FOLDER=build_web_release
|
|
|
|
call build_web_common.bat %* codegen || goto :error
|
|
|
|
goto :success
|
|
|
|
:error
|
|
echo Failed to build
|
|
|
|
:success
|
|
set "returncode=%ERRORLEVEL%"
|
|
popd
|
|
exit /B %returncode%
|