gstreamer/subprojects/gst-plugins-good/gst/shapewipe/meson.build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
606 B
Meson
Raw Normal View History

shapewipe_sources = [
'gstshapewipe.c',
]
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,
c_args : gst_plugins_good_args,
include_directories : [configinc],
dependencies : [gst_dep, gstvideo_dep, gio_dep],
install : true,
install_dir : plugins_install_dir,
)
2018-10-22 09:39:55 +00:00
plugins += [gstshapewipe]