blob: 58df15f68c3e053c25592a2109a08dbda51c39ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# this file is part of irssi
executable('botti',
files(
'irssi.c',
),
include_directories : rootinc,
implicit_include_directories : false,
export_dynamic : true,
link_with : [
libconfig_a,
libcore_a,
libirc_a,
],
install : true,
dependencies : dep
)
# noinst_headers = files(
# 'module.h',
# )
|