https://github.com/Kitware/CMake
Raw File
Tip revision: 64fb825438a2fecb9eab9933d5d1b926bf6f294b authored by Brad King on 24 November 2020, 13:50:26 UTC
CMake 3.19.1
Tip revision: 64fb825
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