mirror of
https://github.com/BlackMATov/flat.hpp.git
synced 2025-12-13 09:45:38 +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%
|