mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
005bd960ee
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1153>
21 lines
507 B
Meson
21 lines
507 B
Meson
rist_sources = [
|
|
'gstroundrobin.c',
|
|
'gstristrtxsend.c',
|
|
'gstristrtxreceive.c',
|
|
'gstristsrc.c',
|
|
'gstristsink.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,
|
|
)
|
|
pkgconfig.generate(gstrist, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstrist]
|