Skip to content

Commit 8d7224a

Browse files
authored
Merge pull request #393 from RestorerZ/ver_n_nsis_arm64
Building the installer for ARM64
2 parents 77b76a3 + 39ea122 commit 8d7224a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

appveyor.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,14 +541,16 @@ pushd vim\nsis
541541

542542
if /I "%ARCH%"=="x64" (
543543
set WIN64=1
544+
if /I "%PLATFORM%"=="arm64" set ARM64=1
544545
) else (
545546
set WIN64=0
547+
set ARM64=0
546548
)
547549

548550
nmake.exe -lf Make_mvc.mak "X=OutFile ..\..\gvim_%VER_NUM%_%CUSTOM%.exe" ^
549551
"GETTEXT=%DEPENDENCIES%" "VIMSRC=..\runtime" "VIMRT=..\runtime" ^
550552
"INCLUDE_LIBGCC=%INCLUDE_LIBGCC%" "SRC=..\runtime" "WIN64=%WIN64%" ^
551-
"VIMTOOLS=..\runtime" || exit 1
553+
"ARM64=%ARM64%" "VIMTOOLS=..\runtime" || exit 1
552554

553555
popd
554556

0 commit comments

Comments
 (0)