cmake/Tests/TryCompile/check_a_b.c
2019-11-11 23:01:05 +01:00

11 lines
123 B
C

#ifndef DEF_A
# error DEF_A not defined
#endif
#ifndef DEF_B
# error DEF_B not defined
#endif
int main()
{
return 0;
}