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