gstreamer/ext/dash/meson.build

30 lines
827 B
Meson
Raw Normal View History

dash_sources = [
'gstdashdemux.c',
'gstxmlhelper.c',
'gstmpdhelper.c',
'gstmpdparser.c',
'gstmpdclient.c',
'gstplugin.c',
]
2019-07-24 18:37:40 +00:00
xml2_dep = dependency('libxml-2.0',
version : '>= 2.8',
fallback : ['libxml2', 'xml2lib_dep'],
required : get_option('dash')
)
if xml2_dep.found()
2019-11-18 20:54:42 +00:00
gstdashdemux = library('gstdashdemux',
dash_sources,
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
link_args : noseh_link_args,
include_directories : [configinc, libsinc],
dependencies : [gstadaptivedemux_dep, gsturidownloader_dep, gsttag_dep,
gstnet_dep, gstbase_dep, gstisoff_dep, gio_dep, xml2_dep],
install : true,
install_dir : plugins_install_dir,
)
2019-11-18 20:54:42 +00:00
pkgconfig.generate(gstdashdemux, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstdashdemux]
endif