irssi/src/irc/notifylist/meson.build

30 lines
683 B
Meson
Raw Normal View History

2019-07-08 00:02:53 +02:00
# this file is part of irssi
2022-02-16 20:27:32 +01:00
libirc_notifylist_sm = shared_module('irc_notifylist',
2019-07-08 00:02:53 +02:00
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,
2021-03-27 11:05:54 +01:00
install : true,
install_dir : moduledir,
2025-07-25 16:15:05 +01:00
link_with : dl_cross_irc_core + dl_cross_irssi_main,
2019-07-08 00:02:53 +02:00
dependencies : dep)
2022-02-16 20:27:32 +01:00
dl_cross_irc_notifylist = []
if need_dl_cross_link
dl_cross_irc_notifylist += libirc_notifylist_sm
endif
2019-07-08 00:02:53 +02:00
install_headers(
files(
'module.h',
'notify-setup.h',
'notifylist.h',
),
subdir : incdir / 'src' / 'irc' / 'notifylist')