mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
16 lines
379 B
Meson
16 lines
379 B
Meson
|
gst_plugins_rtp_sources = [
|
||
|
'plugin.c',
|
||
|
'gstrtpsink.c',
|
||
|
'gstrtpsrc.c',
|
||
|
'gstrtp-utils.c',
|
||
|
]
|
||
|
|
||
|
gstrtp = library('gstrtpmanagerbad',
|
||
|
gst_plugins_rtp_sources,
|
||
|
dependencies: [gio_dep, gst_dep, gstbase_dep, gstrtp_dep, gstnet_dep, gstcontroller_dep],
|
||
|
include_directories: [configinc],
|
||
|
install: true,
|
||
|
c_args: gst_plugins_bad_args,
|
||
|
install_dir: plugins_install_dir,
|
||
|
)
|