summaryrefslogtreecommitdiffstats
path: root/test cases/unit/41 rpath order/meson.build
blob: a722894e531f6e3cbcd8418d48485eb610f12fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
project('myexe', 'c')

sub1 = subproject('sub1')
sub1_dep = sub1.get_variable('sub1_dep')

sub2 = subproject('sub2')
sub2_dep = sub2.get_variable('sub2_dep')

executable('myexe',
           'myexe.c',
           dependencies: [sub1_dep, sub2_dep])