gstreamer/ext/ogg/meson.build
Julian Bouzas d58cf8b8d3 ogg: allow per feature registration
Split plugin into features including
elements and device providers which
can be indiviually registered during
a static build.

More details here:

https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/900>
2020-12-10 13:01:57 +00:00

28 lines
769 B
Meson

ogg_sources = [
'dirac_parse.c',
'gstoggaviparse.c',
'gstoggplugin.c',
'gstoggdemux.c',
'gstoggmux.c',
'gstoggparse.c',
'gstoggstream.c',
'gstogmparse.c',
'vorbis_parse.c',
]
ogg_dep = dependency('ogg', version : '>=1.0', required : get_option('ogg'))
core_conf.set('HAVE_OGG', ogg_dep.found())
if ogg_dep.found()
gstogg = library('gstogg',
ogg_sources,
c_args : gst_plugins_base_args,
link_args : noseh_link_args,
include_directories: [configinc, libsinc],
dependencies : glib_deps + [ogg_dep, audio_dep, pbutils_dep, tag_dep, riff_dep, gst_dep, gst_base_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstogg, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstogg]
endif