1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-02 06:11:11 +00:00
irssi/src/irc/notifylist/meson.build
2023-08-10 10:19:01 +02:00

31 lines
661 B
Meson

# this file is part of irssi
libirc_notifylist_sm = shared_module('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,
dependencies : dep)
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')