2019-07-08 00:02:53 +02:00
|
|
|
# this file is part of irssi
|
|
|
|
|
|
2026-01-25 22:07:44 +01:00
|
|
|
libirc_notifylist_sm = shared_library(
|
|
|
|
|
'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,
|
2023-08-10 10:19:01 +02:00
|
|
|
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,
|
2025-07-25 19:49:53 +02:00
|
|
|
dependencies : dep,
|
2026-01-25 22:07:44 +01:00
|
|
|
override_options : [ 'b_lundef=false' ],
|
|
|
|
|
)
|
2019-07-08 00:02:53 +02:00
|
|
|
|
2026-01-25 22:07:44 +01:00
|
|
|
dl_cross_irc_notifylist = [ ]
|
2022-02-16 20:27:32 +01:00
|
|
|
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',
|
|
|
|
|
),
|
2026-01-25 22:07:44 +01:00
|
|
|
subdir : incdir / 'src' / 'irc' / 'notifylist',
|
|
|
|
|
)
|