1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# this file is part of irssi
shared_module('otr_core',
files(
'key.c',
'otr-fe.c',
'otr-formats.c',
'otr-module.c',
'otr-ops.c',
'otr.c',
),
include_directories : rootinc,
implicit_include_directories : false,
name_suffix : module_suffix,
install : true,
install_dir : moduledir,
dependencies : dep,
)
# noinst_headers = files(
# 'irssi-otr.h',
# 'key.h',
# 'module.h',
# 'otr-fe.h',
# 'otr-formats.h',
# 'otr.h',
# )
|