thorvg/src/loaders/webp/meson.build
Junsu Choi ce7f4cb7c3 loader/webp: Support static webp loader
Built to libwebp code in to support the static option of webp loader.
Code from :https://github.com/jacklicn/libwebp

This forking version only contains the minimal webp decoding feature.

Binary Size: +68kb

Co-authored-by: Hermet Park <hermet@lottiefiles.com>

issue: https://github.com/thorvg/thorvg/issues/1427
2024-02-07 20:40:50 +09:00

17 lines
292 B
Meson

webp_deb = []
subdir('dec')
subdir('dsp')
subdir('utils')
subdir('webp')
source_file = [
'tvgWebpLoader.h',
'tvgWebpLoader.cpp',
]
subloader_dep += [declare_dependency(
include_directories : include_directories('.'),
dependencies : webp_deb,
sources : source_file
)]