20 lines
352 B
Batchfile
20 lines
352 B
Batchfile
@echo off
|
|||
|
|
setlocal
|
||
|
|
|
||
|
|
chcp 65001 >nul
|
||
|
|
|
||
|
|
echo Building spherical-gui (delegating to cmd\spherical-gui\build.bat) ...
|
||
|
|
|
||
|
|
pushd "%~dp0cmd\spherical-gui"
|
||
|
|
call build.bat
|
||
|
|
set "EXITCODE=%errorlevel%"
|
||
|
|
popd
|
||
|
|
|
||
|
|
if not "%EXITCODE%"=="0" (
|
||
|
|
echo Build failed ^(exit code %EXITCODE%^)
|
||
|
|
exit /b %EXITCODE%
|
||
|
|
)
|
||
|
|
|
||
|
|
echo Build completed: %~dp0bin\spherical-gui.exe
|
||
|
|
|
||
|
|
endlocal
|