mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
21 lines
449 B
Meson
21 lines
449 B
Meson
rist_sources = [
|
|
'gstroundrobin.c',
|
|
'gstristrtxsend.c',
|
|
'gstristrtxreceive.c',
|
|
'gstristsrc.c',
|
|
'gstristsink.c',
|
|
'gstrist.c',
|
|
'gstristplugin.c',
|
|
'gstristrtpext.c',
|
|
'gstristrtpdeext.c'
|
|
]
|
|
|
|
gstrist = library('gstrist',
|
|
rist_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstrtp_dep, gstnet_dep, gio_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstrist]
|