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.
 
 
 
 
 
 

26 rivejä
357 B

  1. @echo off
  2. @setlocal
  3. pushd %~dp0
  4. set exeName=slime.exe
  5. set binDir=bin
  6. mkdir build 2>nul
  7. pushd build
  8. taskkill /F /IM %exeName% > NUL 2> NUL
  9. echo ---------- Compiling ----------
  10. call timecmd clang++ -std=c++1z ../src/main.cpp -o %exeName% -D_DEBUG libucrtd.lib
  11. if %errorlevel% == 0 (
  12. echo.
  13. echo Done
  14. ) else (
  15. echo.
  16. echo Fuckin' ell
  17. )
  18. popd
  19. popd