diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | dist/sink.spec | 2 | ||||
-rw-r--r-- | docs/building.md | 11 |
3 files changed, 11 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a76fdcb..84f4df6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -6,7 +6,7 @@ cmake_policy(SET CMP0028 NEW) | |||
6 | project(sink VERSION 0.1.0) | 6 | project(sink VERSION 0.1.0) |
7 | 7 | ||
8 | option(BUILD_MAILDIR "BUILD_MAILDIR" ON) | 8 | option(BUILD_MAILDIR "BUILD_MAILDIR" ON) |
9 | option(BUILD_DAV "BUILD_DAV" ON) | 9 | option(BUILD_DAV "BUILD_DAV" OFF) |
10 | option(AVOID_BINDING_REBUILD "AVOID_BINDING_REBUILD" OFF) | 10 | option(AVOID_BINDING_REBUILD "AVOID_BINDING_REBUILD" OFF) |
11 | option(CATCH_ERRORS "CATCH_ERRORS" OFF) | 11 | option(CATCH_ERRORS "CATCH_ERRORS" OFF) |
12 | option(ENABLE_MEMCHECK "Build valgrind tests" OFF) | 12 | option(ENABLE_MEMCHECK "Build valgrind tests" OFF) |
diff --git a/dist/sink.spec b/dist/sink.spec index 0c21082..ed8822e 100644 --- a/dist/sink.spec +++ b/dist/sink.spec | |||
@@ -23,7 +23,6 @@ BuildRequires: libgit2-devel | |||
23 | BuildRequires: lmdb-devel | 23 | BuildRequires: lmdb-devel |
24 | BuildRequires: qt5-qtbase-devel | 24 | BuildRequires: qt5-qtbase-devel |
25 | BuildRequires: readline-devel | 25 | BuildRequires: readline-devel |
26 | BuildRequires: kdav-devel | ||
27 | 26 | ||
28 | %description | 27 | %description |
29 | sink | 28 | sink |
@@ -48,6 +47,7 @@ mkdir -p build/ | |||
48 | pushd build | 47 | pushd build |
49 | %{cmake} \ | 48 | %{cmake} \ |
50 | -DQT_PLUGIN_INSTALL_DIR:PATH=%{_libdir}/qt5/plugins/ \ | 49 | -DQT_PLUGIN_INSTALL_DIR:PATH=%{_libdir}/qt5/plugins/ \ |
50 | -DBUILD_DAV=OFF \ | ||
51 | .. | 51 | .. |
52 | 52 | ||
53 | make %{?_smp_mflags} | 53 | make %{?_smp_mflags} |
diff --git a/docs/building.md b/docs/building.md index 17ef54b..1eb61a3 100644 --- a/docs/building.md +++ b/docs/building.md | |||
@@ -88,12 +88,19 @@ make install | |||
88 | 88 | ||
89 | # Dependencies | 89 | # Dependencies |
90 | 90 | ||
91 | * ExtraCmakeModules >= 0.0.10 | 91 | * ExtraCmakeModules >= 1.0 |
92 | * Qt >= 5.2 | 92 | * Qt >= 5.2 |
93 | * KF5::Async >= 0.1 | 93 | * KF5::Async >= 0.1 |
94 | * flatbuffers >= 1.0 | 94 | * flatbuffers >= 1.4 |
95 | * libgit2 | 95 | * libgit2 |
96 | * readline | 96 | * readline |
97 | 97 | ||
98 | ## Maildir Resource | 98 | ## Maildir Resource |
99 | * KF5::Mime | 99 | * KF5::Mime |
100 | |||
101 | ## IMAP Resource | ||
102 | * KF5::Mime | ||
103 | * KIMAP2 >= 0.1 | ||
104 | |||
105 | ## Maildir Resource | ||
106 | * KDAV | ||