parent
c21637a01d
commit
c7e7d1a4c3
9 changed files with 44 additions and 6 deletions
@ -0,0 +1,5 @@ |
|||||||
|
sc = run_command(grabber) |
||||||
|
subsources = sc.stdout().strip().split(newline) |
||||||
|
|
||||||
|
se = executable('subprog', subsources) |
||||||
|
test('subgrabtest', se) |
@ -0,0 +1 @@ |
|||||||
|
int funca() { return 0; } |
@ -0,0 +1 @@ |
|||||||
|
int funcb() { return 0; } |
@ -0,0 +1 @@ |
|||||||
|
int funcc() { return 0; } |
@ -0,0 +1,7 @@ |
|||||||
|
int funca(); |
||||||
|
int funcb(); |
||||||
|
int funcc(); |
||||||
|
|
||||||
|
int main(int argc, char **argv) { |
||||||
|
return funca() + funcb() + funcc(); |
||||||
|
} |
Loading…
Reference in new issue