gstreamer/gst/subparse/meson.build
Stéphane Cerveau b6f8d0544c subparse: 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:
i
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

21 lines
515 B
Meson

subparse_sources = [
'gstssaparse.c',
'gstsubparse.c',
'gstsubparseelement.c',
'gstsubparseplugin.c',
'samiparse.c',
'tmplayerparse.c',
'mpl2parse.c',
'qttextparse.c',
]
gstsubparse = library('gstsubparse',
subparse_sources,
c_args : gst_plugins_base_args,
include_directories: [configinc, libsinc],
dependencies : [gst_base_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstsubparse, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstsubparse]