generated from macoy/gamelib-project-template
2 changed files with 34 additions and 0 deletions
@ -0,0 +1,29 @@ |
|||
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% |
@ -0,0 +1,5 @@ |
|||
(comptime-define-symbol 'Windows) |
|||
|
|||
;; Debug |
|||
(add-build-options-global "/Zi") |
|||
(add-linker-options "/DEBUG") |
Loading…
Reference in new issue