/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to tests/meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-19 14:42:03 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210119144203-x6dogarnxlyy7xi7
Hopefully finisted the meson convertion

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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