summaryrefslogtreecommitdiffstats
path: root/src/daemon/meson.build
blob: 44fa2996c16ad83735cc08d1ca2017e4845bb9c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
d_filenames = [
	'main.c',
	'settings.c',
	'net.c',
	'settings_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)