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