mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
meson: Add missing gio dep to webrtcbin plugin
It's usually pulled in implicitly through gstsdp_dep, but it's actually a private dependency there. Fixes a build failure on Windows with newer Meson.
This commit is contained in:
parent
936f89a0d5
commit
9504fc7174
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,8 @@ if libnice_dep.found()
|
|||
webrtc_sources,
|
||||
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
||||
include_directories : [configinc],
|
||||
dependencies : [libnice_dep, gstbase_dep, gstsdp_dep, gstapp_dep, gstwebrtc_dep, gstsctp_dep],
|
||||
dependencies : [gio_dep, libnice_dep, gstbase_dep, gstsdp_dep,
|
||||
gstapp_dep, gstwebrtc_dep, gstsctp_dep],
|
||||
install : true,
|
||||
install_dir : plugins_install_dir,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue