forked from PsychoticNinja/ailin-nemui-irssi
24 lines
488 B
Meson
24 lines
488 B
Meson
# this file is part of irssi
|
|
|
|
libirc_notifylist_a = 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,
|
|
install : true,
|
|
install_dir : moduledir,
|
|
dependencies : dep)
|
|
|
|
install_headers(
|
|
files(
|
|
'module.h',
|
|
'notify-setup.h',
|
|
'notifylist.h',
|
|
),
|
|
subdir : incdir / 'src' / 'irc' / 'notifylist')
|