generated from macoy/gamelib-project-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
456 B
30 lines
456 B
5 months ago
|
cd Dependencies\cakelisp
|
||
|
call Build.bat
|
||
|
@if %ERRORLEVEL% == 0 (
|
||
|
echo Successfully built Cakelisp
|
||
|
goto user
|
||
|
) else (
|
||
|
echo Error while building cakelisp
|
||
|
goto fail
|
||
|
)
|
||
|
|
||
|
:user
|
||
|
cd ../../
|
||
|
"Dependencies\cakelisp\bin\cakelisp.exe" src/Config_Windows.cake src/Presentation.cake
|
||
|
@if %ERRORLEVEL% == 0 (
|
||
|
echo Success!
|
||
|
goto success
|
||
|
) else (
|
||
|
echo Error while building user program
|
||
|
goto fail
|
||
|
)
|
||
|
|
||
|
:fail
|
||
|
goto end
|
||
|
|
||
|
:success
|
||
|
goto end
|
||
|
|
||
|
:end
|
||
|
exit /B %ERRORLEVEL%
|