2025-01-13 17:10:31 +00:00
|
|
|
shapewipe_sources = [
|
2016-08-12 15:42:30 +00:00
|
|
|
'gstshapewipe.c',
|
2025-01-13 17:10:31 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
shapewipe_headers = [
|
|
|
|
'gstshapewipe.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: shapewipe_sources + shapewipe_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
plugin_sources += {
|
|
|
|
'shapewipe': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
|
|
|
if get_option('shapewipe').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
gstshapewipe = library('gstshapewipe',
|
|
|
|
shapewipe_sources,
|
2016-08-12 15:42:30 +00:00
|
|
|
c_args : gst_plugins_good_args,
|
|
|
|
include_directories : [configinc],
|
2022-03-25 19:00:20 +00:00
|
|
|
dependencies : [gst_dep, gstvideo_dep, gio_dep],
|
2016-08-12 15:42:30 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:39:55 +00:00
|
|
|
plugins += [gstshapewipe]
|