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.
16 lines
324 B
16 lines
324 B
#include <stdio.h> |
|
|
|
#include "../lib.h" |
|
|
|
SYMBOL_IMPORT int get_@LIBTYPE@@DEPENDENCY@dep_value (void); |
|
|
|
int main(int argc, char *argv[]) { |
|
int val; |
|
|
|
val = get_@LIBTYPE@@DEPENDENCY@dep_value (); |
|
if (val != @VALUE@) { |
|
printf("@LIBTYPE@@DEPENDENCY@ was %i instead of @VALUE@\n", val); |
|
return -1; |
|
} |
|
return 0; |
|
}
|
|
|