1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-09 06:20:45 +00:00
irssi/src/meson.build

30 lines
398 B
Meson
Raw Normal View History

2019-07-07 22:02:53 +00:00
# this file is part of irssi
subdir('lib-config')
subdir('core')
foreach s : chat_modules
subdir(s)
endforeach
subdir('fe-common')
if have_perl
subdir('perl')
endif
if have_otr
subdir('otr')
endif
if want_bot
subdir('fe-none')
endif
if want_textui
subdir('fe-text')
endif
if want_fuzzer
subdir('fe-fuzz')
endif
install_headers(
files(
'common.h'
),
subdir : incdir / 'src')