The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
347 B
17 lines
347 B
7 years ago
|
#include <stdio.h>
|
||
|
|
||
|
int meson_test_main_foo(void);
|
||
|
int meson_test_subproj_foo(void);
|
||
|
|
||
|
int main(void) {
|
||
|
if (meson_test_main_foo() != 10) {
|
||
|
printf("Failed meson_test_main_foo\n");
|
||
|
return 1;
|
||
|
}
|
||
|
if (meson_test_subproj_foo() != 20) {
|
||
|
printf("Failed meson_test_subproj_foo\n");
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|