mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8f807477eb
Checks for GL, Qt5, and C++ are still automagic. FIXMEs have been added for these so they can be fixed later. https://bugzilla.gnome.org/show_bug.cgi?id=795107
20 lines
539 B
Meson
20 lines
539 B
Meson
png_sources = [
|
|
'gstpng.c',
|
|
'gstpngenc.c',
|
|
'gstpngdec.c',
|
|
]
|
|
|
|
libpng_dep = dependency('libpng', version : '>=1.2', required : get_option('png'))
|
|
|
|
if libpng_dep.found()
|
|
gstpng = library('gstpng',
|
|
png_sources,
|
|
c_args : gst_plugins_good_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep, libpng_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstpng, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|