diff options
Diffstat (limited to 'third_party/python/gyp/test/configurations/basics/configurations.c')
-rw-r--r-- | third_party/python/gyp/test/configurations/basics/configurations.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/python/gyp/test/configurations/basics/configurations.c b/third_party/python/gyp/test/configurations/basics/configurations.c new file mode 100644 index 0000000000..39e13c9c83 --- /dev/null +++ b/third_party/python/gyp/test/configurations/basics/configurations.c @@ -0,0 +1,15 @@ +#include <stdio.h> + +int main(void) +{ +#ifdef FOO + printf("Foo configuration\n"); +#endif +#ifdef DEBUG + printf("Debug configuration\n"); +#endif +#ifdef RELEASE + printf("Release configuration\n"); +#endif + return 0; +} |