cmake/Tests/TryCompile/check_a_b.c

11 lines
127 B
C
Raw Normal View History

2019-11-11 23:01:05 +01:00
#ifndef DEF_A
# error DEF_A not defined
#endif
#ifndef DEF_B
# error DEF_B not defined
#endif
2024-04-14 22:45:38 +02:00
int main(void)
2019-11-11 23:01:05 +01:00
{
return 0;
}