build.bat 624 B

1234567891011121314151617
  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. version_update.exe "Spiele Platform\Klient\Fertig\x64\data\version" "Spiele Platform\Klient\Fertig\x32\data\version" "Spiele Platform\Klient\Fertig\Debug\x64\data\version"
  11. set /a timerstop=((1%time:~0,2%-100)*60*60)+((1%time:~3,2%-100)*60)+(1%time:~6,2%-100)
  12. set /a timeseks=(%timerstop%-%timerstart%)
  13. set /a timemins=(%timerstop%-%timerstart%)/60
  14. echo Sekunden: %timeseks% -- Minuten: %timemins%