mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
34 lines
736 B
Meson
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',
|
|
)
|