From 05f44af95d644c3cc90fe8f9387612d628fea13c Mon Sep 17 00:00:00 2001
From: Vladimir Stoiakin <VStoiakin@lavabit.com>
Date: Mon, 13 Jul 2020 00:32:08 +0300
Subject: [PATCH] meson: add metainfo about support of plugins

Change-Id: I321bdff614f1a90c5745cbedbebb89f0e0a1494f
---
 src/meson.build | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/meson.build b/src/meson.build
index ccba7d495f..e7cd8a0c71 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -282,7 +282,10 @@ libjami = library('jami',
 libjami_dep = declare_dependency(
     include_directories: 'dring',
     link_with: libjami,
-    variables: {'video': conf.get('ENABLE_VIDEO')? 'true' : 'false'}
+    variables: {
+        'video': conf.get('ENABLE_VIDEO')? 'true' : 'false',
+        'plugins': conf.get('ENABLE_PLUGIN')? 'true' : 'false'
+    }
 )
 
 if get_option('interfaces').contains('library')
@@ -321,6 +324,9 @@ if get_option('interfaces').contains('library')
         url: 'https://jami.net/',
         subdirs: 'dring',
         filebase: 'jami',
-        variables: 'video=' + (conf.get('ENABLE_VIDEO')? 'true' : 'false')
+        variables: [
+            'video=' + (conf.get('ENABLE_VIDEO')? 'true' : 'false'),
+            'plugins=' + (conf.get('ENABLE_PLUGIN')? 'true' : 'false')
+        ]
     )
 endif
-- 
GitLab