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.
10 lines
189 B
10 lines
189 B
4 years ago
|
project('cmake toolchain test', ['c', 'cpp'])
|
||
|
|
||
|
if meson.is_cross_build()
|
||
|
error('MESON_SKIP_TEST: skip this on cross builds')
|
||
|
endif
|
||
|
|
||
|
cm = import('cmake')
|
||
|
|
||
|
sub_pro = cm.subproject('cmMod')
|