From 166da47745dc4e776ef4d77674ea5245da141d8b Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Wed, 11 Jun 2008 11:22:44 +0200 Subject: [PATCH] FindOpenSSL.cmake fails on Win32 -_- --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e5a6f44f..ee39a485 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,7 +115,7 @@ endif(DEFINED STATIC) if(STATICWIN AND WIN32) link_libraries(imm32 winmm) # missing by default :/ if(OPENSSL_FOUND) - link_libraries(${OPENSSL_LIBRARIES}) # not sure if we need it in here + link_libraries(${OPENSSL_LIBRARIES} libeay32MD) endif(OPENSSL_FOUND) endif(STATICWIN AND WIN32) -- 2.20.1