We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d469002 commit f12d485Copy full SHA for f12d485
program-test/install-build-deps.sh
@@ -2,8 +2,11 @@
2
set -e
3
case $(uname -s | cut -c1-7) in
4
"Windows" | "MINGW64")
5
- vcpkg install openssl:x64-windows-static-md
6
- vcpkg integrate install
+ export PERL="$(which perl)"
+ export OPENSSL_SRC_PERL="$(which perl)"
7
+ choco install openssl --version 3.4.1 --install-arguments="'/DIR=C:\OpenSSL'" -y
8
+ export OPENSSL_LIB_DIR='C:\OpenSSL\lib\VC\x64\MT'
9
+ export OPENSSL_INCLUDE_DIR='C:\OpenSSL\include'
10
choco install protoc
11
export PROTOC='C:\ProgramData\chocolatey\lib\protoc\tools\bin\protoc.exe'
12
;;
0 commit comments