summaryrefslogtreecommitdiffstats
path: root/melib/build.rs
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2019-11-14 17:55:06 +0200
committerManos Pitsidianakis <el13635@mail.ntua.gr>2019-11-15 22:56:45 +0200
commit77936e0cd55c1924d7718fdde1debdf1c29149ae (patch)
treed9ccd79039c91d2a3085d187a4136bbbec95ad46 /melib/build.rs
parent7463248da88523d80783a5e43ef7fcf071fde3f4 (diff)
melib: add notmuch backend
Missing: - Watching for updates functionality - Using tags - Search
Diffstat (limited to 'melib/build.rs')
-rw-r--r--melib/build.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/melib/build.rs b/melib/build.rs
new file mode 100644
index 00000000..95a56c58
--- /dev/null
+++ b/melib/build.rs
@@ -0,0 +1,6 @@
+fn main() {
+ #[cfg(feature = "notmuch_backend")]
+ {
+ println!("cargo:rustc-link-lib=notmuch");
+ }
+}