mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
meson build support
This commit is contained in:
parent
fb85fdec5c
commit
db16a0a853
57 changed files with 1787 additions and 46 deletions
29
src/meson.build
Normal file
29
src/meson.build
Normal file
|
|
@ -0,0 +1,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')
|
||||
Loading…
Add table
Add a link
Reference in a new issue