From cebd379b680beb01ddd222e332cc26e1c5ca03cd Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 17 Jul 2014 14:47:45 -0700 Subject: [PATCH] don't pass OpenSSL libraries as string --- cmake/modules/FindOpenSSL.cmake | 3 --- interface/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/cmake/modules/FindOpenSSL.cmake b/cmake/modules/FindOpenSSL.cmake index be83295104..1dbac311da 100644 --- a/cmake/modules/FindOpenSSL.cmake +++ b/cmake/modules/FindOpenSSL.cmake @@ -139,9 +139,6 @@ if(WIN32 AND NOT CYGWIN) include(SelectLibraryConfigurations) select_library_configurations(LIB_EAY) select_library_configurations(SSL_EAY) - - message("SSL_EAY:" ${SSL_EAY_LIBRARY}) - message("LIB_EAY:" ${LIB_EAY_LIBRARY}) set( OPENSSL_LIBRARIES ${SSL_EAY_LIBRARY} ${LIB_EAY_LIBRARY} ) elseif(MINGW) diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt index 8cb94dfe86..324fd6ee1d 100644 --- a/interface/CMakeLists.txt +++ b/interface/CMakeLists.txt @@ -254,7 +254,7 @@ target_link_libraries( ${TARGET_NAME} "${FACESHIFT_LIBRARIES}" "${ZLIB_LIBRARIES}" - "${OPENSSL_LIBRARIES}" + ${OPENSSL_LIBRARIES} Qt5::Core Qt5::Gui Qt5::Multimedia Qt5::Network Qt5::OpenGL Qt5::Script Qt5::Svg Qt5::WebKit Qt5::WebKitWidgets Qt5::Xml Qt5::UiTools )