https://github.com/Kitware/CMake
Raw File
Tip revision: c9b27dace7e4110b25d5889e9c6952d0f4a7ca58 authored by Brad King on 06 April 2021, 17:21:53 UTC
CMake 3.19.8
Tip revision: c9b27da
CMakeOBJCXXCompilerABI.mm
#ifndef __cplusplus
# error "A C compiler has been selected for Objective-C++."
#endif

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

#include "CMakeCompilerABI.h"

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

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