1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From 4e4adc230665cc11315cffed7f0f87149326789a Mon Sep 17 00:00:00 2001
From: Lionel Duboeuf <lduboeuf@ouvaton.org>
Date: Thu, 26 Sep 2024 10:59:51 +0200
Subject: [PATCH] make invitation plugin optional
buteo-sync-plugin-caldav.pro | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
@@ -1,5 +1,8 @@
TEMPLATE = subdirs
-SUBDIRS = src tests mkcal
+SUBDIRS = src tests
+!contains(INCLUDE_INVITATION_PLUGIN, no) {
+ SUBDIRS += mkcal
+}
tests.depends = src
OTHER_FILES += rpm/buteo-sync-plugin-caldav.spec \
src/xmls/client/caldav.xml \
|