don't pass OpenSSL libraries as string

This commit is contained in:
Stephen Birarda 2014-07-17 14:47:45 -07:00
parent b88761a8a3
commit cebd379b68
2 changed files with 1 additions and 4 deletions

View file

@ -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)

View file

@ -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
)