gstreamer/subprojects/gst-plugins-bad/gst/asfmux/meson.build

19 lines
442 B
Meson
Raw Normal View History

asfmux_sources = [
'gstasfmux.c',
'gstasfobjects.c',
'gstasfparse.c',
'gstrtpasfpay.c',
'gstasf.c',
]
gstasfmux = library('gstasfmux',
asfmux_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc, libsinc],
dependencies : [gstbase_dep, gstrtp_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstasfmux, install_dir : plugins_pkgconfig_install_dir)
2018-10-22 09:30:45 +00:00
plugins += [gstasfmux]