mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
tests: gst-plugins-base and -bad plugins are required for the unit tests
Make hard requirement until we have more fine-grained control in the unit tests. Of course the presence of the .pc file doesn't imply that the plugins we need are actually there, but it's at least a step in the right direction. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-rtsp-server/-/merge_requests/126>
This commit is contained in:
parent
fe5d29ee3f
commit
92215f2f37
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
pluginsdirs = []
|
pluginsdirs = []
|
||||||
if gst_dep.type_name() == 'pkgconfig'
|
if gst_dep.type_name() == 'pkgconfig'
|
||||||
pbase = dependency('gstreamer-plugins-base-' + api_version, required : false)
|
pbase = dependency('gstreamer-plugins-base-' + api_version, required: true)
|
||||||
pbad = dependency('gstreamer-plugins-bad-' + api_version, required : false)
|
pbad = dependency('gstreamer-plugins-bad-' + api_version, required: true)
|
||||||
|
|
||||||
pluginsdirs = [gst_dep.get_pkgconfig_variable('pluginsdir'),
|
pluginsdirs = [gst_dep.get_pkgconfig_variable('pluginsdir'),
|
||||||
pbase.get_pkgconfig_variable('pluginsdir'),
|
pbase.get_pkgconfig_variable('pluginsdir'),
|
||||||
|
|
Loading…
Reference in a new issue