mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
11 lines
332 B
Meson
11 lines
332 B
Meson
gstapp_plugin = library('gstapp',
|
|
'gstapp.c',
|
|
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]
|