1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-21 00:25:37 +00:00
elinks/src/encoding/meson.build
2021-12-23 15:39:42 +01:00

18 lines
350 B
Meson

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