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
This commit is contained in:
Guillaume Desmottes 2017-05-09 16:26:44 +02:00 committed by Sebastian Dröge
parent 0c1217f35b
commit e8590db808

View file

@ -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,
)