blob: 0647325977121c72554b2c6dd3e3bc7cf05f6cb0 [file] [log] [blame]
project('A', 'c')
# Same as the previous test but use C and B in
# the opposite order.
C = subproject('C')
c = C.get_variable('c')
B = subproject('B')
b = B.get_variable('b')
a = executable('a', 'a.c', link_with : [b, c])
test('a test', a)