diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-03-26 23:14:22 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-03-26 23:14:22 +0100 |
commit | e95487a144ffe0923efda938b20e45bb5b9a59ff (patch) | |
tree | 10594a509e940e53f1829b3e50e6f6c7de12490c | |
parent | ec4110c63443e29c78fdf0f72af08f5395ec48f7 (diff) | |
download | libquotient-e95487a144ffe0923efda938b20e45bb5b9a59ff.tar.gz libquotient-e95487a144ffe0923efda938b20e45bb5b9a59ff.zip |
Fix building tests without E2EE
-rw-r--r-- | cmake/QuotientConfig.cmake | 4 |
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") |