43 lines
1.0 KiB
C
Raw Normal View History

2013-04-21 10:33:41 +03:00
#include <ctype.h>
2016-07-09 11:21:54 +02:00
#include <stdio.h>
#include <string.h>
2013-04-21 10:33:41 +03:00
#ifndef BUILD_CONFIG_NAME
2016-07-09 11:21:54 +02:00
#error "BUILD_CONFIG_NAME not defined!"
2013-04-21 10:33:41 +03:00
#endif
int main()
{
char build_config_name[] = BUILD_CONFIG_NAME;
char* c;
2016-07-09 11:21:54 +02:00
for (c = build_config_name; *c; ++c) {
2013-04-21 10:33:41 +03:00
*c = (char)tolower((int)*c);
2016-07-09 11:21:54 +02:00
}
2013-04-21 10:33:41 +03:00
fprintf(stderr, "build_config_name=\"%s\"\n", build_config_name);
#ifdef TEST_CONFIG_DEBUG
2016-07-09 11:21:54 +02:00
if (strcmp(build_config_name, "debug") != 0) {
2013-04-21 10:33:41 +03:00
fprintf(stderr, "build_config_name is not \"debug\"\n");
return 1;
2016-07-09 11:21:54 +02:00
}
2013-04-21 10:33:41 +03:00
#endif
#ifdef TEST_CONFIG_RELEASE
2016-07-09 11:21:54 +02:00
if (strcmp(build_config_name, "release") != 0) {
2013-04-21 10:33:41 +03:00
fprintf(stderr, "build_config_name is not \"release\"\n");
return 1;
2016-07-09 11:21:54 +02:00
}
2013-04-21 10:33:41 +03:00
#endif
#ifdef TEST_CONFIG_MINSIZEREL
2016-07-09 11:21:54 +02:00
if (strcmp(build_config_name, "minsizerel") != 0) {
2013-04-21 10:33:41 +03:00
fprintf(stderr, "build_config_name is not \"minsizerel\"\n");
return 1;
2016-07-09 11:21:54 +02:00
}
2013-04-21 10:33:41 +03:00
#endif
#ifdef TEST_CONFIG_RELWITHDEBINFO
2016-07-09 11:21:54 +02:00
if (strcmp(build_config_name, "relwithdebinfo") != 0) {
2013-04-21 10:33:41 +03:00
fprintf(stderr, "build_config_name is not \"relwithdebinfo\"\n");
return 1;
2016-07-09 11:21:54 +02:00
}
2013-04-21 10:33:41 +03:00
#endif
return 0;
}