2020-12-11 14:02:03 +00:00
|
|
|
app_sources = [
|
2016-08-12 15:26:31 +00:00
|
|
|
'gstapp.c',
|
2020-12-11 14:02:03 +00:00
|
|
|
'gstappsink.c',
|
|
|
|
'gstappsrc.c',
|
|
|
|
]
|
|
|
|
|
2025-01-13 17:10:31 +00:00
|
|
|
app_headers = [
|
|
|
|
'gstappelements.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: app_sources + app_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'app': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
|
|
|
if get_option('app').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2020-12-11 14:02:03 +00:00
|
|
|
gstapp_plugin = library('gstapp',
|
|
|
|
app_sources,
|
2016-08-12 15:26:31 +00:00
|
|
|
c_args: gst_plugins_base_args,
|
|
|
|
include_directories: [configinc],
|
|
|
|
dependencies : [gst_base_dep, app_dep, tag_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 06:17:24 +00:00
|
|
|
|
|
|
|
plugins += [gstapp_plugin]
|