diff options
author | Carl Schwan <carl@carlschwan.eu> | 2021-02-05 00:03:27 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-01 21:34:52 +0100 |
commit | 38547289d56cf66b4f1384ae789cf5b6cd71763e (patch) | |
tree | d42ca419ed9ad8d840ca16b55cf3d6404b89ac68 /CMakeLists.txt | |
parent | d9dc94a8fb59c8590c4aa7cdf773c2825e69d823 (diff) | |
download | libquotient-38547289d56cf66b4f1384ae789cf5b6cd71763e.tar.gz libquotient-38547289d56cf66b4f1384ae789cf5b6cd71763e.zip |
Fix cmake code
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fb07fa22..ba6c8cd1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -316,7 +316,8 @@ if (${PROJECT_NAME}_ENABLE_E2EE) target_link_libraries(${PROJECT_NAME} Olm::Olm OpenSSL::Crypto OpenSSL::SSL) - set(FIND_DEPS "find_dependency(Olm OpenSSL)") # For QuotientConfig.cmake.in + set(FIND_DEPS "find_dependency(Olm) + find_dependency(OpenSSL)") # For QuotientConfig.cmake.in endif() target_link_libraries(${PROJECT_NAME} ${Qt}::Core ${Qt}::Network ${Qt}::Gui) |