build.bat 434 B

1234567891011121314
  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. cd "Allgemein"
  4. call build.bat
  5. cd "../Apps"
  6. call build.bat
  7. cd "../Spiele Platform"
  8. call build.bat
  9. set /a timerstop=((1%time:~0,2%-100)*60*60)+((1%time:~3,2%-100)*60)+(1%time:~6,2%-100)
  10. set /a timeseks=(%timerstop%-%timerstart%)
  11. set /a timemins=(%timerstop%-%timerstart%)/60
  12. echo Sekunden: %timeseks% -- Minuten: %timemins%