mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
19 lines
416 B
Meson
19 lines
416 B
Meson
gio_sources = ['gstgio.c',
|
|
'gstgioelement.c',
|
|
'gstgiobasesink.c',
|
|
'gstgiobasesrc.c',
|
|
'gstgiosink.c',
|
|
'gstgiosrc.c',
|
|
'gstgiostreamsink.c',
|
|
'gstgiostreamsrc.c',
|
|
]
|
|
|
|
gstgio = library('gstgio',
|
|
gio_sources,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
dependencies : [gst_base_dep, gio_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstgio]
|