https://github.com/Kitware/CMake
Raw File
Tip revision: 8bcba75b1c12d69f0649e23173e3b19672b068e2 authored by Brad King on 14 July 2023, 15:03:52 UTC
CMake 3.27.0-rc5
Tip revision: 8bcba75
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