diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2017-05-09 16:26:44 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2017-05-09 16:32:19 +0200 |
commit | ea94905a9110b48eb6cf66210fb899809700c97e (patch) | |
tree | 81c39b3a6aa3ca7b09ae03210c7e0a19a55569a1 | |
parent | a36241ab35b4aa0b0012f943e8f0928393cddb31 (diff) | |
download | gst-omx-ea94905a9110b48eb6cf66210fb899809700c97e.tar.gz |
meson: add dep on GModule
libgstomx uses the GModule API and so needs it in its dependencies list.
https://bugzilla.gnome.org/show_bug.cgi?id=782387
-rw-r--r-- | omx/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omx/meson.build b/omx/meson.build index 08447e6..6fe1ce2 100644 --- a/omx/meson.build +++ b/omx/meson.build @@ -51,7 +51,7 @@ gstomx = library('gstomx', # link_args : noseh_link_args, include_directories : [configinc] + extra_inc, dependencies : [gstvideo_dep, gstaudio_dep, gstbase_dep, gstcontroller_dep, - libm] + optional_deps, + libm, gmodule_dep] + optional_deps, install : true, install_dir : plugins_install_dir, ) |