The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
304 B
15 lines
304 B
5 years ago
|
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
|