https://github.com/Kitware/CMake
Raw File
Tip revision: 454bfa77b2951cc53296da86928dce00885d4d5b authored by Brad King on 08 March 2023, 19:04:09 UTC
CMake 3.26.0-rc6
Tip revision: 454bfa7
verify.h
#ifdef VERIFY_Z7
#  ifndef TEST_Z7
#    error "TEST_Z7 incorrectly not defined by debug format selection"
#  endif
#else
#  ifdef TEST_Z7
#    error "TEST_Z7 incorrectly defined by non-debug format selection"
#  endif
#endif

#ifdef VERIFY_Zi
#  ifndef TEST_Zi
#    error "TEST_Zi incorrectly not defined by debug format selection"
#  endif
#else
#  ifdef TEST_Zi
#    error "TEST_Zi incorrectly defined by non-debug format selection"
#  endif
#endif

#ifdef VERIFY_ZI
#  ifndef TEST_ZI
#    error "TEST_ZI incorrectly not defined by debug format selection"
#  endif
#else
#  ifdef TEST_ZI
#    error "TEST_ZI incorrectly defined by non-debug format selection"
#  endif
#endif
back to top