aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/100 manygen/meson.build
blob: e70a55a17eb37ebd547cd152fc2ba9f236a2ce34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
project('manygen', 'c')

if meson.is_cross_build()
  # FIXME error out with skip message once cross test runner
  # recognizes it.
  message('Not running this test during cross build.')
else
  subdir('subdir')

  exe = executable('depuser', 'depuser.c',
    generated)

  test('depuser test', exe)
endif