1 2 3 4 5 6 7 8 9 10 11
project('sub sub', 'c') a = subproject('a') lib = a.get_variable('l') dependency('not-found-dep', required : false, version : '>=1', fallback : ['c', 'notfound_dep']) exe = executable('prog', 'prog.c', link_with : lib) test('basic', exe)