A vector interactive fiction/visual novel "engine"
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.
 
 
 
 

29 lines
460 B

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/VectorPuppetShow.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%