irssi/src/irc/notifylist/meson.build
2026-01-25 22:07:44 +01:00

34 lines
736 B
Meson

# this file is part of irssi
libirc_notifylist_sm = shared_library(
'irc_notifylist',
files(
'notify-commands.c',
'notify-ison.c',
'notify-setup.c',
'notify-whois.c',
'notifylist.c',
),
include_directories : rootinc,
implicit_include_directories : false,
name_suffix : module_suffix,
install : true,
install_dir : moduledir,
link_with : dl_cross_irc_core + dl_cross_irssi_main,
dependencies : dep,
override_options : [ 'b_lundef=false' ],
)
dl_cross_irc_notifylist = [ ]
if need_dl_cross_link
dl_cross_irc_notifylist += libirc_notifylist_sm
endif
install_headers(
files(
'module.h',
'notify-setup.h',
'notifylist.h',
),
subdir : incdir / 'src' / 'irc' / 'notifylist',
)