preconfigure.bat now accepts 'arm64' as build target

This commit is contained in:
pancake 2024-02-17 13:06:15 +01:00
parent f1ae08a813
commit 60f8a34406
1 changed files with 3 additions and 1 deletions

View File

@ -46,8 +46,10 @@ if %ERRORLEVEL% == 0 (
REM vs uses HOST_TARGET syntax, so: x86_amd64 means 32bit compiler for 64bit target
REM: Hosts: x86 amd64 x64
REM: Targets: x86 amd64 x64 arm arm64
if "%*" == "x86" (
IF "%*" == "x86" (
set VSARCH=x86
) ELSE IF "%*" == "arm64" (
set VSARCH=x86_arm64
) ELSE (
set VSARCH=x86_amd64
)