summaryrefslogtreecommitdiffstats
path: root/test cases/common/73 shared subproject 2/meson.build
blob: 0647325977121c72554b2c6dd3e3bc7cf05f6cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)