summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2017-05-09 16:26:44 +0200
committerSebastian Dröge <sebastian@centricular.com>2017-05-09 16:32:19 +0200
commitea94905a9110b48eb6cf66210fb899809700c97e (patch)
tree81c39b3a6aa3ca7b09ae03210c7e0a19a55569a1
parenta36241ab35b4aa0b0012f943e8f0928393cddb31 (diff)
downloadgst-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.build2
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,
)