/vqdr/trunk

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

« back to all changes in this revision

Viewing changes to tests/meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-07 18:48:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200607184824-jf14f7a1b1di2i2q
* Initial code - far from done

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
test_dependencies = dependencies
 
2
 
 
3
 
 
4
test1_files = files ([
 
5
  'test_runner.vala',
 
6
  'random-d6.vala',
 
7
  'root_token.vala',
 
8
  'value-token.vala',
 
9
])
 
10
 
 
11
test1 = executable ('test1',
 
12
                     test1_files,
 
13
                     dependencies: [test_dependencies, libvqdr_dep])
 
14
test ('Test Suite 1', test1)
 
15
 
 
16
test2_files = files ([
 
17
  'gobject_to_string.vala',
 
18
])
 
19
 
 
20
test2 = executable ('test2',
 
21
                     test2_files,
 
22
                     dependencies: [test_dependencies, libvqdr_dep])
 
23
 
 
24
 
 
25
subdir_done ()