2019-07-08 00:02:53 +02:00
|
|
|
# this file is part of irssi
|
|
|
|
|
|
2022-02-14 16:54:58 +01:00
|
|
|
shared_module('irc_dcc',
|
2019-07-08 00:02:53 +02:00
|
|
|
files(
|
|
|
|
|
'dcc-autoget.c',
|
|
|
|
|
'dcc-chat.c',
|
|
|
|
|
'dcc-get.c',
|
|
|
|
|
'dcc-queue.c',
|
|
|
|
|
'dcc-resume.c',
|
|
|
|
|
'dcc-send.c',
|
|
|
|
|
'dcc-server.c',
|
|
|
|
|
'dcc.c',
|
|
|
|
|
),
|
|
|
|
|
include_directories : rootinc,
|
|
|
|
|
implicit_include_directories : false,
|
2021-03-27 11:05:54 +01:00
|
|
|
install : true,
|
|
|
|
|
install_dir : moduledir,
|
2019-07-08 00:02:53 +02:00
|
|
|
dependencies : dep)
|
|
|
|
|
|
|
|
|
|
install_headers(
|
|
|
|
|
files(
|
|
|
|
|
'dcc-chat.h',
|
|
|
|
|
'dcc-file-rec.h',
|
|
|
|
|
'dcc-file.h',
|
|
|
|
|
'dcc-get.h',
|
|
|
|
|
'dcc-queue.h',
|
|
|
|
|
'dcc-rec.h',
|
|
|
|
|
'dcc-send.h',
|
|
|
|
|
'dcc-server.h',
|
|
|
|
|
'dcc.h',
|
|
|
|
|
'module.h',
|
|
|
|
|
),
|
|
|
|
|
subdir : incdir / 'src' / 'irc' / 'dcc')
|