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