From 7f322bfe7e3cccaa104c494b6714bace8b110ca0 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Sun, 31 Jul 2016 17:11:19 -0500 Subject: set link library dependencies with MSVC, fixes #221 --- ssl/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ssl') diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index 90acd33..e836047 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt @@ -52,6 +52,9 @@ if (BUILD_SHARED) add_library(ssl-objects OBJECT ${SSL_SRC}) add_library(ssl STATIC $) add_library(ssl-shared SHARED $) + if (MSVC) + target_link_libraries(ssl-shared crypto-shared Ws2_32.lib) + endif() set_target_properties(ssl-shared PROPERTIES OUTPUT_NAME ssl) set_target_properties(ssl-shared PROPERTIES VERSION ${SSL_VERSION} SOVERSION ${SSL_MAJOR_VERSION}) -- cgit v1.2.3-55-g6feb