mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
29 lines
427 B
Meson
29 lines
427 B
Meson
# this file is part of irssi
|
|
|
|
subdir('lib-config')
|
|
subdir('core')
|
|
subdir('fe-common' / 'core')
|
|
if want_bot
|
|
subdir('fe-none')
|
|
endif
|
|
if want_textui
|
|
subdir('fe-text')
|
|
endif
|
|
foreach s : chat_modules
|
|
subdir(s)
|
|
subdir('fe-common' / s)
|
|
endforeach
|
|
if have_perl
|
|
subdir('perl')
|
|
endif
|
|
if have_otr
|
|
subdir('otr')
|
|
endif
|
|
if want_fuzzer
|
|
subdir('fe-fuzz')
|
|
endif
|
|
|
|
install_headers(
|
|
files('common.h'),
|
|
subdir : incdir / 'src',
|
|
)
|