updatemx2cc.bat 472 B

1234567891011121314151617
  1. echo off
  2. call common.bat
  3. echo.
  4. echo ***** Updating mx2cc *****
  5. echo.
  6. %mx2cc% makemods -config=release monkey libc miniz stb-image stb-image-write stb-vorbis zlib std
  7. if %errorlevel% neq 0 exit /b %errorlevel%
  8. %mx2cc% makeapp -apptype=console -config=release -product=scripts/mx2cc.products/mx2cc_windows.exe ../src/mx2cc/mx2cc.monkey2
  9. if %errorlevel% neq 0 exit /b %errorlevel%
  10. copy mx2cc.products\mx2cc_windows.exe %mx2cc%
  11. if %errorlevel% neq 0 exit /b %errorlevel%