summaryrefslogtreecommitdiffstats
path: root/test cases/common/75 custom subproject dir/meson.build
blob: d9ba649b1fbea13b552942018fa8de37e4b12606 (plain)
1
2
3
4
5
6
7
8
9
10
project('A', 'c', subproject_dir:'custom_subproject_dir')

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)