blob: aa0aa75faaf23e2db832bf7736238df82d9c56a6 (
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
|
d_filenames = [
'main.c',
'settings.c',
'net.c',
'purple.c',
'settings_private.h',
'purple_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)
|