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.
15 lines
206 B
15 lines
206 B
12 years ago
|
#include <string.h>
|
||
|
#include "config.h"
|
||
|
|
||
|
#ifdef SHOULD_BE_UNDEF
|
||
|
#error "FAIL!"
|
||
|
#endif
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
#ifndef BE_TRUE
|
||
|
return 1;
|
||
|
#else
|
||
|
return strcmp(MESSAGE, "mystring");
|
||
|
#endif
|
||
|
}
|