Revision 4d9c312cac874ff79cfa27a13f8ee3d817560d18 authored by Brad King on 02 October 2023, 12:57:16 UTC, committed by Kitware Robot on 02 October 2023, 12:57:36 UTC
2 parent s 37c8062 + 832e88b
Raw File
CMakeTestGNU.c
#if defined(__GNUC__) &&                                                      \
  !(defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER))
void THIS_IS_GNU();
#endif
#ifdef __MINGW32__
void THIS_IS_MINGW();
#endif
#ifdef __CYGWIN__
void THIS_IS_CYGWIN();
#endif
back to top