mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +00:00
709913b1d2
so it could also be used from the gst-parse-launch Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5514>
13 lines
328 B
Meson
13 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]
|