diff options
author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-10-02 22:49:05 -0500 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-10-04 22:28:29 -0500 |
commit | 65a150e7877af228fe05b9b22497709aa4f9133f (patch) | |
tree | 24973613fc8d67d5659a036cd21e13047533f47b /meson.build | |
parent | 94ef1da455c19f8e87292a0212c18073fc15674d (diff) | |
download | wbg-65a150e7877af228fe05b9b22497709aa4f9133f.tar.gz |
webp: intial support for WebP images, using libwebp
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 47c6155..4668cd7 100644 --- a/meson.build +++ b/meson.build @@ -49,8 +49,9 @@ endif pixman = dependency('pixman-1') png = dependency('libpng', required: get_option('png')) jpg = dependency('libjpeg', required: get_option('jpeg')) +webp = dependency('libwebp', required: get_option('webp')) -if not png.found() and not jpg.found() +if not png.found() and not jpg.found() and not webp.found() error('you must enable at least one image format') endif @@ -60,6 +61,9 @@ endif if jpg.found() add_project_arguments('-DWBG_HAVE_JPG=1', language:'c') endif +if webp.found() + add_project_arguments('-DWBG_HAVE_WEBP=1', language:'c') +endif wayland_protocols = dependency('wayland-protocols') wayland_client = dependency('wayland-client') @@ -106,6 +110,9 @@ endif if jpg.found() image_format_sources += ['jpg.c', 'jpg.h'] endif +if webp.found() + image_format_sources += ['webp.c', 'webp.h'] +endif executable( 'wbg', @@ -115,13 +122,14 @@ executable( 'stride.h', image_format_sources, wl_proto_src + wl_proto_headers, version, - dependencies: [pixman, png, jpg, wayland_client, tllist], + dependencies: [pixman, png, jpg, webp, wayland_client, tllist], install: true) summary( { 'PNG support': png.found(), 'JPEG support': jpg.found(), + 'WebP support': webp.found(), }, bool_yn: true ) |