https://github.com/Kitware/CMake
Revision 031fa14b7eab1e85882eb5a9e10cb8f7f66c1350 authored by Brad King on 07 June 2022, 14:57:07 UTC, committed by Kitware Robot on 07 June 2022, 14:57:13 UTC
d14349c907 ci: Enable ISPC tests on Linux, Windows, and macOS nightly builds
49996faaac ci: remove ISPC from the Fedora CI image
3e791592ad gitlab-ci: init macOS and Windows jobs with per-CMAKE_CONFIGURATION scripts

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7336
2 parent s 4224df9 + d14349c
Raw File
Tip revision: 031fa14b7eab1e85882eb5a9e10cb8f7f66c1350 authored by Brad King on 07 June 2022, 14:57:07 UTC
Merge topic 'ci-ispc'
Tip revision: 031fa14
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