repertory/scripts/make_win32.cmd
Scott E. Graves 62555e6125
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
v2.0.5-rc (#41)
Reviewed-on: #41
2025-03-26 07:02:38 -05:00

19 lines
400 B
Batchfile

@echo off
setlocal
set ARG1=%~1
set ARG2=%~2
set ARG3=%~3
pushd "%~dp0%"
call setup_msys2.cmd "%ARG1%" "%ARG2%" "%ARG3%"
if exist "cleanup.cmd" (
call cleanup.cmd "%ARG1%" "%ARG2%" "%ARG3%" 1 0
del cleanup.*
)
call mingw64 -no-start ./make_flutter.sh "%ARG1%" "%ARG2%" "%ARG3%" 1 0 || exit 1
call mingw64 -no-start ./make_common.sh "%ARG1%" "%ARG2%" "%ARG3%" 1 0 || exit 1
popd