mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +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
20 lines
No EOL
357 B
Meson
20 lines
No EOL
357 B
Meson
source_file = [
|
|
'yuv.h',
|
|
'dsp.h',
|
|
'lossless.h',
|
|
'alpha_processing.cpp',
|
|
'argb.cpp',
|
|
'cpu.cpp',
|
|
'dec.cpp',
|
|
'dec_clip_tables.cpp',
|
|
'filters.cpp',
|
|
'lossless.cpp',
|
|
'rescaler.cpp',
|
|
'upsampling.cpp',
|
|
'yuv.cpp'
|
|
]
|
|
|
|
webp_deb += [declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)] |