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

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

test('evanix', e)