mirror of
https://github.com/enduro2d/enduro2d-bootstrap.git
synced 2025-12-13 03:31:18 +07:00
13 lines
326 B
Batchfile
13 lines
326 B
Batchfile
@echo off
|
|
set SCRIPT_DIR=%~dp0%
|
|
call %SCRIPT_DIR%\build_debug_x86.bat || goto :error
|
|
call %SCRIPT_DIR%\build_debug_x64.bat || goto :error
|
|
call %SCRIPT_DIR%\build_release_x86.bat || goto :error
|
|
call %SCRIPT_DIR%\build_release_x64.bat || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed with error #%errorlevel%.
|
|
exit /b %errorlevel%
|