1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/osdep/meson.build

20 lines
410 B
Meson
Raw Normal View History

#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')