run_game.bat 433 B

1234567891011121314151617181920212223242526
  1. @echo off
  2. if %PROCESSOR_ARCHITECTURE%==x86 (
  3. Pushd %~dp0\stk-code\build-i686\bin\
  4. supertuxkart.exe
  5. popd
  6. )
  7. if %PROCESSOR_ARCHITECTURE%==AMD64 (
  8. Pushd %~dp0\stk-code\build-x86_64\bin\
  9. supertuxkart.exe
  10. popd
  11. )
  12. if %PROCESSOR_ARCHITECTURE%==ARM64 (
  13. Pushd %~dp0\stk-code\build-aarch64\bin\
  14. supertuxkart.exe
  15. popd
  16. )
  17. if %PROCESSOR_ARCHITECTURE%==ARM (
  18. Pushd %~dp0\stk-code\build-armv7\bin\
  19. supertuxkart.exe
  20. popd
  21. )