summaryrefslogtreecommitdiffstats
path: root/src/meson.build
blob: dee8dc3c6f787edea166a98400c93b171959b1da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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')