mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
22 lines
626 B
Meson
22 lines
626 B
Meson
pixbuf_sources = [
|
|
'gstgdkpixbufdec.c',
|
|
'gstgdkpixbufoverlay.c',
|
|
'gstgdkpixbufelement.c',
|
|
'gstgdkpixbufplugin.c',
|
|
'gstgdkpixbufsink.c',
|
|
]
|
|
|
|
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
|