1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00
elinks/src/encoding/meson.build

18 lines
353 B
Meson
Raw 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')
srcs += files('deflate.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')