@echo off @setlocal pushd %~dp0 set exeName=slime.exe pushd bin taskkill /F /IM %exeName% > NUL 2> NUL echo ---------- Compiling ---------- call timecmd cl ../src/main.cpp /std:c++latest /Fe%exeName% /W3 /Zi /nologo /EHsc /link /NODEFAULTLIB:libucrt libucrtd.lib popd if %errorlevel% == 0 ( echo. echo ---- Running Tests ---- echo. call timecmd bin\slime.exe --run-tests echo. echo ---- Genderating Docs ---- echo. call timecmd bin\slime generate-docs.slime ) else ( echo. echo Fuckin' ell ) popd