blob: f83613cd7776e485ccd259530c2ba5f9f7a49ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
d_filenames = [
'main.c',
'settings.c',
'net.c',
]
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)
|