We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a37a841 commit 9adf797Copy full SHA for 9adf797
compat/vcbuild/vcpkg_install.bat
@@ -55,9 +55,15 @@ REM ================================================================
55
echo Successfully installed %cwd%vcpkg\vcpkg.exe
56
57
:install_libraries
58
- SET arch=x64-windows
+ CALL :install_libraries_arch x64-windows
59
+ IF ERRORLEVEL 1 GOTO :EOF
60
+ CALL :install_libraries_arch arm64-windows
61
+ goto :EOF
62
+
63
+:install_libraries_arch
64
+ SET arch=%1
65
- echo Installing third-party libraries...
66
+ echo Installing third-party libraries(%1)...
67
FOR %%i IN (zlib expat libiconv openssl libssh2 curl) DO (
68
cd %cwd%vcpkg
69
IF NOT EXIST "packages\%%i_%arch%" CALL :sub__install_one %%i
0 commit comments