mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
20 lines
453 B
Meson
20 lines
453 B
Meson
|
png_sources = [
|
||
|
'gstpng.c',
|
||
|
'gstpngenc.c',
|
||
|
'gstpngdec.c',
|
||
|
]
|
||
|
|
||
|
libpng_dep = dependency('libpng', version : '>=1.2', required : false)
|
||
|
|
||
|
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,
|
||
|
)
|
||
|
endif
|