mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
6fdbe19b3f
Split plugin into features including dynamic types 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-good/-/merge_requests/876>
10 lines
401 B
Meson
10 lines
401 B
Meson
gstflv = library('gstflv',
|
|
'gstflvdemux.c', 'gstflvmux.c', 'gstflvplugin.c','gstflvelement.c',
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstpbutils_dep, gstvideo_dep, gsttag_dep, gstaudio_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstflv, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstflv]
|