Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.com>2020-11-17 11:22:03 +0300
committerGuillaume Desmottes <guillaume.desmottes@collabora.com>2020-11-18 16:40:43 +0300
commitfd26dfeccac976f22123e4fa50bc32206a6052a8 (patch)
tree4cf28c903d31e54da5c18a094e89b8e37a70a0a4 /meson.build
parent7e64652fa7fb6032f4344401aae184ea151c3623 (diff)
meson: fix multiple outputs target warning
meson 0.54 introduced a new API allowing us to fix this warning.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build7
1 files changed, 2 insertions, 5 deletions
diff --git a/meson.build b/meson.build
index 4ef622fba..7d6e2426e 100644
--- a/meson.build
+++ b/meson.build
@@ -2,7 +2,7 @@ project('gst-plugins-rs',
'rust',
'c',
version: '0.13.0',
- meson_version : '>= 0.52')
+ meson_version : '>= 0.54')
if get_option('debug')
target = 'debug'
@@ -160,10 +160,7 @@ rs_plugins = custom_target('gst-plugins-rs',
extra_env_str,
extensions])
-# FIXME: raises a warning as the target has multiple outputs and meson will use
-# only the first one. All the plugins have the same basedir, hence
-# GST_PLUGIN_PATH will include them all, so that's ok.
-plugins = [rs_plugins]
+plugins = rs_plugins.to_list()
test('tests',
cargo_wrapper,