initial changes

This commit is contained in:
2025-02-18 14:31:57 -06:00
parent fff36b65d4
commit 57e31fbe0d
157 changed files with 23815 additions and 0 deletions

16
scripts/make_win32.cmd Normal file
View File

@@ -0,0 +1,16 @@
@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_common.sh "%ARG1%" "%ARG2%" "%ARG3%" 1 0 || exit 1
popd