meson/test cases/common/72 shared subproject/meson.build

11 lines
174 B
Meson

project('A', 'c')
B = subproject('B')
b = B.get_variable('b')
C = subproject('C')
c = C.get_variable('c')
a = executable('a', 'a.c', link_with : [b, c])
test('a test', a)