aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 79f7ef7aa..e7c4a8eb1 100644
--- a/meson.build
+++ b/meson.build
@@ -214,6 +214,13 @@ endif
214if zbar_dep.found() 214if zbar_dep.found()
215 add_project_arguments('-DHAVE_ZBAR', language : 'c') 215 add_project_arguments('-DHAVE_ZBAR', language : 'c')
216endif 216endif
217jose_dep = dependency('libjose', required : false)
218if not jose_dep.found()
219 jose_dep = cc.find_library('jose', required : false)
220endif
221if jose_dep.found()
222 add_project_arguments('-DHAVE_JOSE', language : 'c')
223endif
217 224
218## FIXME conversation: pulse/gst detection in configure.ac obviously 225## FIXME conversation: pulse/gst detection in configure.ac obviously
219## broken. Needs reconsideration. No idea for now. 226## broken. Needs reconsideration. No idea for now.