From 41a4de394a26d52509fb4db6f65f9c87b6d2095a Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Fri, 13 Dec 2019 00:39:56 +0200 Subject: [PATCH] Add optional 'jmap' feature in binary Cargo.toml. --- Cargo.toml | 1 + README | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 99bf84ae..f45e1fec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,6 +26,7 @@ members = ["melib", "ui", "debug_printer", "testing", "text_processing"] [features] default = [] notmuch = ["melib/notmuch_backend", "ui/notmuch"] +jmap = ["melib/jmap_backend",] # Print tracing logs as meli runs in stderr # enable for debug tracing logs: build with --features=debug-tracing diff --git a/README b/README index 47fc329e..6d900447 100644 --- a/README +++ b/README @@ -65,6 +65,15 @@ To build with notmuch support, prepend the environment variable "MELI_FEATURES=' or if building directly with cargo, use the flag '--features="notmuch"'. +BUILDING WITH JMAP +===================== + +To build with JMAP support, prepend the environment variable "MELI_FEATURES='jmap'" to your make invocation: + +# MELI_FEATURES="jmap" make + +or if building directly with cargo, use the flag '--features="jmap"'. + DEVELOPMENT ===========