blob: d8735a1cd76c7a4182902d701f290bd9f0285d60 [file] [log] [blame]
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)