| 1234567891011121314151617 |
- echo off
- call common.bat
- echo.
- echo ***** Updating mx2cc *****
- echo.
- %mx2cc% makemods -config=release monkey libc miniz stb-image stb-image-write stb-vorbis zlib std
- if %errorlevel% neq 0 exit /b %errorlevel%
- %mx2cc% makeapp -apptype=console -config=release -product=scripts/mx2cc.products/mx2cc_windows.exe ../src/mx2cc/mx2cc.monkey2
- if %errorlevel% neq 0 exit /b %errorlevel%
- copy mx2cc.products\mx2cc_windows.exe %mx2cc%
- if %errorlevel% neq 0 exit /b %errorlevel%
|