mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
17 lines
401 B
Meson
17 lines
401 B
Meson
app_sources = [
|
|
'gstapp.c',
|
|
'gstappsink.c',
|
|
'gstappsrc.c',
|
|
]
|
|
|
|
gstapp_plugin = library('gstapp',
|
|
app_sources,
|
|
c_args: gst_plugins_base_args,
|
|
include_directories: [configinc],
|
|
dependencies : [gst_base_dep, app_dep, tag_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstapp_plugin, install_dir : plugins_pkgconfig_install_dir)
|
|
|
|
plugins += [gstapp_plugin]
|