0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-05-18 00:48:57 -04:00
elinks/src/encoding/meson.build
Witold Filipczyk 5f87bdbcb2 [meson] meson build scripts.
Not finished yet, but I added to motivate myself and others.
The goal is to get a few seconds faster builds.

autotools still will be available.
2020-09-05 22:06:01 +02:00

18 lines
353 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('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')