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.
19 lines
243 B
19 lines
243 B
4 years ago
|
#include<stdio.h>
|
||
|
|
||
|
#ifndef CPPFLAG
|
||
|
#error CPPFLAG not set
|
||
|
#endif
|
||
|
|
||
|
#ifndef CFLAG
|
||
|
#error CFLAGS not set
|
||
|
#endif
|
||
|
|
||
|
#ifdef CXXFLAG
|
||
|
#error CXXFLAG is set
|
||
|
#endif
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
printf("%d %s\n", argc, argv[0]);
|
||
|
return 0;
|
||
|
}
|