gstreamer/subprojects/gst-plugins-good/ext/gdk_pixbuf/meson.build

39 lines
957 B
Meson

pixbuf_sources = [
'gstgdkpixbufdec.c',
'gstgdkpixbufoverlay.c',
'gstgdkpixbufelement.c',
'gstgdkpixbufplugin.c',
'gstgdkpixbufsink.c',
]
pixbuf_headers = [
'gstgdkpixbufsink.h',
'gstgdkpixbufdec.h',
'gstgdkpixbufoverlay.h',
'gstgdkanimation.h',
'gstgdkpixbufelements.h',
]
doc_sources = []
foreach s: pixbuf_sources + pixbuf_headers
doc_sources += meson.current_source_dir() / s
endforeach
plugin_sources += {
'gdkpixbuf': pathsep.join(doc_sources)
}
gdkpixbuf_dep = dependency('gdk-pixbuf-2.0', version : '>=2.8.0', required : get_option('gdk-pixbuf'))
if gdkpixbuf_dep.found()
gstgdkpixbuf = library('gstgdkpixbuf',
pixbuf_sources,
c_args : gst_plugins_good_args,
link_args : noseh_link_args,
include_directories : [configinc],
dependencies : [gstbase_dep, gstvideo_dep, gstcontroller_dep, gdkpixbuf_dep],
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstgdkpixbuf]
endif