parent
df357211a8
commit
29fa1dd522
21 changed files with 62 additions and 18 deletions
@ -0,0 +1,8 @@ |
||||
project('git outcheckker', 'c') |
||||
|
||||
sp = subproject('samplesubproject') |
||||
|
||||
exe = executable('gitprog', 'prog.c', |
||||
include_directories : sp.get_variable('subproj_inc'), |
||||
link_with : sp.get_variable('subproj_lib'), |
||||
) |
@ -0,0 +1,6 @@ |
||||
#include"subproj.h" |
||||
|
||||
int main(int argc, char **argv) { |
||||
subproj_function(); |
||||
return 0; |
||||
} |
@ -0,0 +1,4 @@ |
||||
[wrap-git] |
||||
directory=samplesubproject |
||||
url=https://github.com/jpakkane/samplesubproject.git |
||||
revision=head |
Loading…
Reference in new issue