mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
21 lines
552 B
Meson
21 lines
552 B
Meson
|
pixbuf_sources = [
|
||
|
'gstgdkpixbufdec.c',
|
||
|
'gstgdkpixbufoverlay.c',
|
||
|
'gstgdkpixbufplugin.c',
|
||
|
'gstgdkpixbufsink.c',
|
||
|
]
|
||
|
|
||
|
gdkpixbuf_dep = dependency('gdk-pixbuf-2.0', version : '>=2.8.0', required : false)
|
||
|
|
||
|
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,
|
||
|
)
|
||
|
endif
|