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
301 B
10 lines
301 B
project('nested subproject regenerate depends', 'c') |
|
|
|
if not find_program('cmake', required: false, version: '>=3.14').found() |
|
error('MESON_SKIP_TEST cmake >= 3.14 not available.') |
|
endif |
|
|
|
s = subproject('sub1') |
|
|
|
# This is needed to make msbuild noop check work correctly |
|
executable('exe', 'main.c')
|
|
|