aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-03-26 23:14:22 +0100
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-03-26 23:14:22 +0100
commite95487a144ffe0923efda938b20e45bb5b9a59ff (patch)
tree10594a509e940e53f1829b3e50e6f6c7de12490c
parentec4110c63443e29c78fdf0f72af08f5395ec48f7 (diff)
downloadlibquotient-e95487a144ffe0923efda938b20e45bb5b9a59ff.tar.gz
libquotient-e95487a144ffe0923efda938b20e45bb5b9a59ff.zip
Fix building tests without E2EE
-rw-r--r--cmake/QuotientConfig.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/QuotientConfig.cmake b/cmake/QuotientConfig.cmake
index 6b842f60..c11d5e79 100644
--- a/cmake/QuotientConfig.cmake
+++ b/cmake/QuotientConfig.cmake
@@ -1,4 +1,6 @@
include(CMakeFindDependencyMacro)
-find_dependency(QtOlm)
+if (Quotient_E2EE_ENABLED)
+ find_dependency(QtOlm)
+endif()
include("${CMAKE_CURRENT_LIST_DIR}/QuotientTargets.cmake")