run_all.bat 365 B

12345678910111213141516171819202122232425
  1. @echo off
  2. mode 200,1000
  3. setlocal
  4. set FMUSDK_HOME=.
  5. rem enhance path to include open modelica dlls. THis is needed due to a bug in loading the dlls
  6. set PREV_PATH=%PATH%
  7. rem set PATH=%PATH%;C:\OpenModelica1.12.0-dev-32bit\bin
  8. echo Running Scenario
  9. bin\fmu20sim_cs.exe
  10. rem restore path
  11. set PATH=%PREV_PATH%
  12. endlocal
  13. if "%1"=="nopause" goto skip
  14. pause
  15. :skip