The Meson Build System
http://mesonbuild.com/
17 lines
300 B
17 lines
300 B
#include <string.h> |
|
/* config.h must not be in quotes: |
|
* https://gcc.gnu.org/onlinedocs/cpp/Search-Path.html |
|
*/ |
|
#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 |
|
}
|
|
|