Skip to content
Snippets Groups Projects
Commit 05f44af9 authored by Vladimir Stoiakin's avatar Vladimir Stoiakin Committed by Adrien Béraud
Browse files

meson: add metainfo about support of plugins

Change-Id: I321bdff614f1a90c5745cbedbebb89f0e0a1494f
parent 6b0311f3
No related branches found
No related tags found
No related merge requests found
...@@ -282,7 +282,10 @@ libjami = library('jami', ...@@ -282,7 +282,10 @@ libjami = library('jami',
libjami_dep = declare_dependency( libjami_dep = declare_dependency(
include_directories: 'dring', include_directories: 'dring',
link_with: libjami, 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') if get_option('interfaces').contains('library')
...@@ -321,6 +324,9 @@ if get_option('interfaces').contains('library') ...@@ -321,6 +324,9 @@ if get_option('interfaces').contains('library')
url: 'https://jami.net/', url: 'https://jami.net/',
subdirs: 'dring', subdirs: 'dring',
filebase: 'jami', 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 endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment