thorvg/src/loaders/webp/dsp/meson.build
Junsu Choi df4f93e79f 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 10:58:25 +09:00

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
)]