mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-07 04:53:37 -04:00
18 lines
350 B
Meson
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')
|