mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 20:14:37 +00:00

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
17 lines
292 B
Meson
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
|
|
)]
|