mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-13 15:48:11 +07:00
11 lines
210 B
Batchfile
11 lines
210 B
Batchfile
@echo off
|
|
set SCRIPT_DIR=%~dp0%
|
|
call %SCRIPT_DIR%\build_debug.bat || goto :error
|
|
call %SCRIPT_DIR%\build_release.bat || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed with error #%errorlevel%.
|
|
exit /b %errorlevel%
|