1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/osdep/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

20 lines
410 B
Meson

#INCLUDES += $(X_CFLAGS)
if conf_data.get('CONFIG_OS_BEOS')
subdir('beos')
endif
if conf_data.get('CONFIG_OS_OS2')
subdir('os2')
endif
if conf_data.get('CONFIG_OS_RISCOS')
subdir('riscos')
endif
if conf_data.get('CONFIG_OS_UNIX') == 1
subdir('unix')
endif
if conf_data.get('CONFIG_OS_WIN32')
subdir('win32')
endif
srcs += files('getifaddrs.c', 'newwin.c', 'osdep.c', 'signals.c', 'stub.c', 'sysname.c')