https://github.com/Kitware/CMake
Revision 624b0fa923ef669649300e923931730d0bd03ba7 authored by Brad King on 24 February 2014, 15:40:07 UTC, committed by CMake Topic Stage on 24 February 2014, 15:40:07 UTC
73e5c6ae ExternalProject: Add option to always run the build step

2 parent s 461eaee + 73e5c6a
Raw File
Tip revision: 624b0fa923ef669649300e923931730d0bd03ba7 authored by Brad King on 24 February 2014, 15:40:07 UTC
Merge topic 'ExternalProject-BUILD_ALWAYS'
Tip revision: 624b0fa
CMakeCCompilerABI.c
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif

#ifdef __CLASSIC_C__
# define const
#endif

/*--------------------------------------------------------------------------*/

#include "CMakeCompilerABI.h"

/*--------------------------------------------------------------------------*/

#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
  int require = 0;
  require += info_sizeof_dptr[argc];
#if defined(ABI_ID)
  require += info_abi[argc];
#endif
  (void)argv;
  return require;
}
back to top