diff --git a/compat/vcbuild/vcpkg_install.bat b/compat/vcbuild/vcpkg_install.bat index 64f53b697e56bc..ac06d6ac012c3b 100644 --- a/compat/vcbuild/vcpkg_install.bat +++ b/compat/vcbuild/vcpkg_install.bat @@ -72,7 +72,7 @@ REM ================================================================ :install_libraries echo Installing third-party libraries(%arch%), this may take a while... - FOR %%i IN (zlib expat libiconv openssl libssh2 curl) DO ( + FOR %%i IN (zlib expat libiconv openssl libssh2 curl gettext) DO ( IF NOT DEFINED NO_%%i ( cd %VCPKG_ROOT% IF NOT EXIST "packages\%%i_%arch%" CALL :sub__install_one %%i @@ -140,3 +140,7 @@ goto :EOF :curl_features set features=[core,openssl,schannel] goto :EOF + +:gettext_features +set features=[tools] +goto :EOF