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.
 
 
 
 
 
 

18 lines
241 B

#include<cstdio>
#ifndef CPPFLAG
#error CPPFLAG not set
#endif
#ifdef CFLAG
#error CFLAG is set
#endif
#ifndef CXXFLAG
#error CXXFLAG not set
#endif
int main(int argc, char **argv) {
printf("%d %s\n", argc, argv[0]);
return 0;
}