You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -80,14 +85,47 @@ REM ================================================================
80
85
:sub__install_one
81
86
echo Installing package %1...
82
87
88
+
call :%1_features
89
+
83
90
REM vcpkg may not be reliable on slow, intermittent or proxy
84
91
REM connections, see e.g.
85
92
REM https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/4a8f7be5-5e15-4213-a7bb-ddf424a954e6/winhttpsendrequest-ends-with-12002-errorhttptimeout-after-21-seconds-no-matter-what-timeout?forum=windowssdk
86
93
REM which explains the hidden 21 second timeout
87
94
REM (last post by Dave : Microsoft - Windows Networking team)
88
95
89
-
.\vcpkg.exe install %1:%arch%
96
+
.\vcpkg.exe install %1%features%:%arch%
90
97
IFERRORLEVEL1 ( EXIT /B 1 )
91
98
92
99
echo Finished %1
93
100
goto :EOF
101
+
102
+
::
103
+
:: features for each vcpkg to install
104
+
:: there should be an entry here for each package to install
105
+
:: 'set features=' means use the default otherwise
106
+
:: 'set features=[comma-delimited-feature-set]' is the syntax
0 commit comments