summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: 33c33fc875a3a736986116b6cf86a9dd532404ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
subdir('core')
subdir('io')

test_names = [
  'basic-test',
]

foreach _test : test_names
  test_bin = executable(_test,
    files('@0@.vala'.format(_test)),
    dependencies: libcontacts_dep,
  )

  test(_test, test_bin,
    suite: 'src',
  )
endforeach