meson build support

This commit is contained in:
Ailin Nemui 2019-07-08 00:02:53 +02:00
commit db16a0a853
57 changed files with 1787 additions and 46 deletions

24
src/irc/meson.build Normal file
View file

@ -0,0 +1,24 @@
# this file is part of irssi
subdir('core')
subdir('dcc')
subdir('flood')
subdir('notifylist')
libirc_a = static_library('irc',
files(
'irc.c',
),
link_with : [
libirc_core_a,
libirc_dcc_a,
libirc_flood_a,
libirc_notifylist_a,
],
include_directories : rootinc,
implicit_include_directories : false,
)
if want_proxy
subdir('proxy')
endif