parent
3c75ae9ced
commit
dd1de073f4
9 changed files with 14 additions and 0 deletions
@ -0,0 +1,5 @@ |
|||||||
|
project('duplicate kwarg', 'c') |
||||||
|
a = library('liba', 'a.c') |
||||||
|
b = library('libb', 'b.c') |
||||||
|
executable('main', 'main.c', link_with: a, link_with: b) |
||||||
|
subdir('sub') |
@ -0,0 +1,3 @@ |
|||||||
|
c = library('libc', 'c.c') |
||||||
|
d = library('libd', 'd.c') |
||||||
|
executable('sub', 'sub.c', link_with: c, link_with: d) |
Loading…
Reference in new issue