build.bat 451 B

12345678910111213141516
  1. @echo off
  2. set /a timerstart=((1%time:~0,2%-100)*60*60)+((1%time:~3,2%-100)*60)+(1%time:~6,2%-100)
  3. call init.bat
  4. cd "Allgemein"
  5. call build.bat
  6. cd "../Apps"
  7. call build.bat
  8. cd "../Spiele Platform"
  9. call build.bat
  10. set /a timerstop=((1%time:~0,2%-100)*60*60)+((1%time:~3,2%-100)*60)+(1%time:~6,2%-100)
  11. set /a timeseks=(%timerstop%-%timerstart%)
  12. set /a timemins=(%timerstop%-%timerstart%)/60
  13. echo Sekunden: %timeseks% -- Minuten: %timemins%