1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/src/terminal/meson.build
Witold Filipczyk d606aca351 [terminal] terminal.cpp -> terminal.c
hash from util instead of C++ map
2023-11-25 18:08:46 +01:00

11 lines
318 B
Meson

if conf_data.get('CONFIG_MOUSE')
srcs += files('mouse.c')
endif
if conf_data.get('CONFIG_LIBSIXEL')
srcs += files('sixel.c')
endif
if conf_data.get('CONFIG_TERMINFO')
srcs += files('terminfo.c')
endif
srcs += files('color.c', 'draw.c', 'event.c', 'hardio.c', 'kbd.c', 'screen.c', 'tab.c', 'terminal.c', 'window.c')