/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
157 by Gustav Hartvigsson
Hopefully finisted the meson convertion
1
test1_files = files ([
2
  'main.c',
160 by Gustav Hartvigsson
Fixed Base16 encoding and decoding
3
  'utils.h',
4
  'utils.c',
157 by Gustav Hartvigsson
Hopefully finisted the meson convertion
5
  'refcount.h',
6
  'refcount.c',
7
  'error.h',
8
  'error.c',
9
  'to_string.h',
10
  'to_string.c',
11
  'dynamic_array.h',
12
  'dynamic_array.c',
13
  'linked_list.h',
14
  'linked_list.c',
15
  'map.h',
16
  'map.c',
17
  'callback.h',
18
  'callback.c',
19
  'thread.h',
20
  'thread.c',
21
  'base_n.h',
22
  'base_n.c',
23
])
24
25
libssts_dep = dependencies
26
27
libssts_dep += declare_dependency (
28
  link_with : libssts,
29
  include_directories : libssts_include,
30
)
31
32
test ('libssts-tests',
33
  executable ('test1',
34
    test1_files,
35
    dependencies : libssts_dep,
36
  ),
37
)
38
39