10 lines
283 B
Batchfile
10 lines
283 B
Batchfile
@echo off
|
|
cd /d "%~dp0..\..\.."
|
|
|
|
set "MSYS2_DIR=C:\msys64"
|
|
|
|
call "%MSYS2_DIR%\msys2_shell.cmd" -mingw32 -no-start -defterm -where "%CD%" -c "./etc/build/win32/%~n0.sh"
|
|
call "%MSYS2_DIR%\msys2_shell.cmd" -mingw64 -no-start -defterm -where "%CD%" -c "./etc/build/win32/%~n0.sh"
|
|
|
|
pause
|