mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
30 lines
398 B
Meson
30 lines
398 B
Meson
# 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')
|