/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',
3
  'refcount.h',
4
  'refcount.c',
5
  'error.h',
6
  'error.c',
7
  'to_string.h',
8
  'to_string.c',
9
  'dynamic_array.h',
10
  'dynamic_array.c',
11
  'linked_list.h',
12
  'linked_list.c',
13
  'map.h',
14
  'map.c',
15
  'callback.h',
16
  'callback.c',
17
  'thread.h',
18
  'thread.c',
19
  'base_n.h',
20
  'base_n.c',
21
])
22
23
libssts_dep = dependencies
24
25
libssts_dep += declare_dependency (
26
  link_with : libssts,
27
  include_directories : libssts_include,
28
)
29
30
test ('libssts-tests',
31
  executable ('test1',
32
    test1_files,
33
    dependencies : libssts_dep,
34
  ),
35
)
36
37