mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +00:00
19 lines
452 B
Meson
19 lines
452 B
Meson
asf_sources = [
|
|
'gstasfdemux.c',
|
|
'gstasf.c',
|
|
'asfheaders.c',
|
|
'asfpacket.c',
|
|
'gstrtpasfdepay.c',
|
|
'gstrtspwms.c',
|
|
]
|
|
|
|
gstasf = library('gstasf',
|
|
asf_sources,
|
|
c_args : ugly_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstbase_dep, gstrtp_dep, gstvideo_dep,
|
|
gstaudio_dep, gsttag_dep, gstriff_dep,
|
|
gstrtsp_dep, gstsdp_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|