mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-01 22:21:13 +00:00
24 lines
469 B
Meson
24 lines
469 B
Meson
|
real_sources = [
|
||
|
'rademux.c',
|
||
|
'rmdemux.c',
|
||
|
'rmutils.c',
|
||
|
'rdtdepay.c',
|
||
|
'rdtmanager.c',
|
||
|
'rtspreal.c',
|
||
|
'realhash.c',
|
||
|
'asmrules.c',
|
||
|
'rdtjitterbuffer.c',
|
||
|
'gstrdtbuffer.c',
|
||
|
'pnmsrc.c',
|
||
|
'realmedia.c'
|
||
|
]
|
||
|
|
||
|
gstrmdemux = library('gstrmdemux',
|
||
|
real_sources,
|
||
|
c_args : ugly_args,
|
||
|
include_directories : [configinc, libsinc],
|
||
|
dependencies : [gstbase_dep, gstrtsp_dep, gstsdp_dep, gstpbutils_dep],
|
||
|
install : true,
|
||
|
install_dir : plugins_install_dir,
|
||
|
)
|