blob: d9009494077666fbcb6b754ee9c2840789326b45 (
plain)
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
|
d_filenames = [
'main.c',
'settings.c',
'net.c',
'purple.c',
'proto_stdio.c',
'settings_private.h',
'purple_private.h',
'proto_stdio_private.h',
]
d_conf_filenames = [
'usurpation.conf'
]
d_version_filename = 'version.c'
version_script = files('genversion.sh')
version = custom_target('version',
input : version_fallback,
output : d_version_filename,
command : [version_script, '@INPUT@', '@OUTPUT@'])
d_sources = files(d_filenames)
d_conf = files(d_conf_filenames)
|