parent
c2b852c9b3
commit
a0b04e730e
3 changed files with 13 additions and 0 deletions
@ -0,0 +1,5 @@ |
||||
extern int test (); |
||||
|
||||
public int main (string[] args) { |
||||
return test (); |
||||
} |
@ -0,0 +1,3 @@ |
||||
int test () { |
||||
return 0; |
||||
} |
@ -0,0 +1,5 @@ |
||||
project('foo', 'c', 'vala') |
||||
|
||||
glib = dependency('glib-2.0') |
||||
|
||||
executable('foo', 'foo.c', 'bar.vala', dependencies: [glib]) |
Loading…
Reference in new issue