https://github.com/Kitware/CMake
Raw File
Tip revision: fae6e8c2cdb5ce6049439f4defd1367b507d1e4b authored by Brad King on 23 March 2023, 13:12:04 UTC
CMake 3.26.1
Tip revision: fae6e8c
check_a_b.c
#ifndef DEF_A
#  error DEF_A not defined
#endif
#ifndef DEF_B
#  error DEF_B not defined
#endif
int main()
{
  return 0;
}
back to top