mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
172c32a64c
Now (in meson) .c files are compiled by C compiler and .cpp by C++ compiler.
8 lines
252 B
Meson
8 lines
252 B
Meson
if conf_data.get('CONFIG_MOUSE')
|
|
srcs += files('mouse.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.cpp', 'window.c')
|