summaryrefslogtreecommitdiff
path: root/src/meson.build
blob: ea955bc56bb6d758c860703ab0c6f12411c65f8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
e = executable(
	'evanix',
        [
		'evanix.c',
		'jobs.c',
		'util.c',
		'queue.c',
		'build.c',
		'htab.c',
	],

	include_directories: evanix_inc,
	dependencies: cjson_dep,
	install: true,
)

test('evanix', e)