https://github.com/Kitware/CMake
Revision dd71ec2c93fdf34f8bbcaafbc05f000ef6ed6cab authored by Brad King on 29 June 2016, 13:51:33 UTC, committed by Brad King on 29 June 2016, 13:51:33 UTC
1 parent e34c554
Raw File
Tip revision: dd71ec2c93fdf34f8bbcaafbc05f000ef6ed6cab authored by Brad King on 29 June 2016, 13:51:33 UTC
CMake 3.6.0-rc4
Tip revision: dd71ec2
CMakeTestGNU.c
#if defined(__GNUC__) && !defined(__INTEL_COMPILER)
void THIS_IS_GNU();
#endif
#ifdef __MINGW32__
void THIS_IS_MINGW();
#endif
#ifdef __CYGWIN__
void THIS_IS_CYGWIN();
#endif
back to top