1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/src/encoding/meson.build

18 lines
350 B
Meson
Raw Permalink Normal View History

if conf_data.get('CONFIG_BROTLI')
srcs += files('brotli.c')
endif
if conf_data.get('CONFIG_BZIP2')
srcs += files('bzip2.c')
endif
if conf_data.get('CONFIG_GZIP')
2021-12-23 14:39:42 +00:00
srcs += files('gzip.c')
endif
if conf_data.get('CONFIG_LZMA')
srcs += files('lzma.c')
endif
if conf_data.get('CONFIG_ZSTD')
srcs += files('zstd.c')
endif
srcs += files('encoding.c')