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
31
32
33
34
35
36
37
38
39
|
test1_files = files ([
'main.c',
'utils.h',
'utils.c',
'refcount.h',
'refcount.c',
'error.h',
'error.c',
'to_string.h',
'to_string.c',
'dynamic_array.h',
'dynamic_array.c',
'linked_list.h',
'linked_list.c',
'map.h',
'map.c',
'callback.h',
'callback.c',
'thread.h',
'thread.c',
'base_n.h',
'base_n.c',
])
libssts_dep = dependencies
libssts_dep += declare_dependency (
link_with : libssts,
include_directories : libssts_include,
)
test ('libssts-tests',
executable ('test1',
test1_files,
dependencies : libssts_dep,
),
)
|