diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-03-28 16:08:27 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-03-28 16:08:27 +0100 |
commit | 72e12a84cefa86758153ad20f6c8da63e1829ba4 (patch) | |
tree | c8dcbc2609b2929f4d6a8efaf2661bd45e544108 | |
parent | a81590c9e3b26f76d02d498802a44719c116fa13 (diff) | |
download | libquotient-72e12a84cefa86758153ad20f6c8da63e1829ba4.tar.gz libquotient-72e12a84cefa86758153ad20f6c8da63e1829ba4.zip |
CMakeLists.txt: don't EXCLUDE_FROM_ALL if QtOlm is in-tree
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9975af91..5d33f2ba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,7 +60,7 @@ get_filename_component(Qt5_Prefix "${Qt5_DIR}/../../../.." ABSOLUTE) 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) - add_subdirectory(3rdparty/libQtOlm EXCLUDE_FROM_ALL) + add_subdirectory(3rdparty/libQtOlm) include_directories(3rdparty/libQtOlm) if (NOT DEFINED USE_INTREE_LIBQOLM) set (USE_INTREE_LIBQOLM 1) |