blob: 41b31da49e66b452fcf8fdaffa62e87f31c001c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
e = executable(
'evanix',
[
'evanix.c',
'jobs.c',
'util.c',
'queue.c',
'build.c',
],
include_directories: evanix_inc,
dependencies: cjson_dep,
install: true,
)
test('evanix', e)
|