summaryrefslogtreecommitdiffstats
path: root/test cases/common/155 subproject dir name collision/meson.build
blob: 55312175e5881d291f3242ea8c4207e35588a347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
project('A', 'c', subproject_dir:'custom_subproject_dir')

B = subproject('B')
b = B.get_variable('b')

C = subproject('C')
c = C.get_variable('c')

subdir('other_subdir')

a = executable('a', 'a.c', link_with : [b, c])
test('a test', a)