summaryrefslogtreecommitdiffstats
path: root/src/server/meson.build
blob: 83335dc87456481ae7dc5cd0d8ef2e2c422d1889 (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
27
28
29
30
dp_filenames = [
	'curses.c',
	'curses.h',
	'gtk.c',
	'gtk.h',
	'net.c',
	'net.h',
	'ui.c',
	'ui.h',
	'util.c',
	'util.h',
	'main.c',
]

dp_extra_filenames = [
	'gtklayout.ui',
	'gtklayout_flash.ui',
]

dp_version_filename = 'version.c'

version_script = files('genversion.sh')

version = custom_target('version',
		input : version_fallback,
		output : dp_version_filename,
		command : [version_script, '@INPUT@', '@OUTPUT@'])

dp_sources = files(dp_filenames)
dp_extra = files(dp_extra_filenames)