CMake/Tests/TryCompile/check_a_b.c
2023-10-26 09:20:45 -04:00

11 lines
127 B
C

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