gstreamer/subprojects/gst-plugins-bad/gst/insertbin/meson.build
Alexander Slobodeniuk 709913b1d2 insertbin: make it available in the registry
so it could also be used from the gst-parse-launch

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5514>
2023-11-16 21:36:32 +01:00

14 lines
328 B
Meson

insertbin_sources = [
'plugin.c'
]
gstinsertbin = library('gstinsertbin',
insertbin_sources,
c_args : gst_plugins_bad_args + [ '-DGST_USE_UNSTABLE_API' ],
include_directories : [configinc],
dependencies : [gst_dep, gstinsertbin_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstinsertbin]