Merge pull request #21611 from jtattermusch/fix_openssl111_win_build

fix build with OpenSSL1.1.1+ on Windows
pull/21351/head
Jan Tattermusch 5 years ago committed by GitHub
commit ae3910768d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CMakeLists.txt
  2. 2
      templates/CMakeLists.txt.template

@ -209,7 +209,7 @@ elseif(UNIX)
endif() endif()
if(WIN32 AND MSVC) if(WIN32 AND MSVC)
set(_gRPC_BASELIB_LIBRARIES wsock32 ws2_32) set(_gRPC_BASELIB_LIBRARIES wsock32 ws2_32 crypt32)
endif() endif()
# Create directory for generated .proto files # Create directory for generated .proto files

@ -306,7 +306,7 @@
endif() endif()
if(WIN32 AND MSVC) if(WIN32 AND MSVC)
set(_gRPC_BASELIB_LIBRARIES wsock32 ws2_32) set(_gRPC_BASELIB_LIBRARIES wsock32 ws2_32 crypt32)
endif() endif()
# Create directory for generated .proto files # Create directory for generated .proto files

Loading…
Cancel
Save