aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2021-01-24 20:14:08 +0100
committerTobias Fella <fella@posteo.de>2021-12-01 21:34:52 +0100
commit723038cb3fe16c3f0078d00362fcb53c10f9eb4a (patch)
tree50331c53c60a637451fdbda74fd6469ba8a0941b
parent4e0fe24681daef069abde3448c26f5cb850d8bb7 (diff)
downloadlibquotient-723038cb3fe16c3f0078d00362fcb53c10f9eb4a.tar.gz
libquotient-723038cb3fe16c3f0078d00362fcb53c10f9eb4a.zip
Depends on OpenSSL for crypo rand
-rw-r--r--CMakeLists.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 18a7b622..a74d2b7b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -87,6 +87,13 @@ find_package(${Qt} ${QtMinVersion} REQUIRED Core Network Gui Test ${QtExtraModul
get_filename_component(Qt_Prefix "${${Qt}_DIR}/../../../.." ABSOLUTE)
message(STATUS "Using Qt ${${Qt}_VERSION} at ${Qt_Prefix}")
+find_package(OpenSSL 1.1.0 REQUIRED)
+set_package_properties(OpenSSL PROPERTIES
+ DESCRIPTION "Open source SSL and TLS implementation and cryptographic library"
+ URL "https://www.openssl.org/"
+ TYPE REQUIRED
+)
+
if (${PROJECT_NAME}_ENABLE_E2EE)
if ((NOT DEFINED USE_INTREE_LIBQOLM OR USE_INTREE_LIBQOLM)
AND EXISTS ${PROJECT_SOURCE_DIR}/3rdparty/libQtOlm/lib/utils.h)
@@ -325,7 +332,14 @@ if (${PROJECT_NAME}_ENABLE_E2EE)
target_link_libraries(${PROJECT_NAME} Olm::Olm QtOlm)
set(FIND_DEPS "find_dependency(QtOlm)") # For QuotientConfig.cmake.in
endif()
-target_link_libraries(${PROJECT_NAME} ${Qt}::Core ${Qt}::Network ${Qt}::Gui)
+
+target_link_libraries(${PROJECT_NAME}
+ ${Qt}::Core
+ ${Qt}::Network
+ ${Qt}::Gui
+ OpenSSL::Crypto
+ OpenSSL::SSL)
+
if (Qt STREQUAL Qt5) # See #483
target_link_libraries(${PROJECT_NAME} ${Qt}::Multimedia)
endif()