https://github.com/Kitware/CMake
Revision 387ea7185306455980a32ed970d2b0ac37d1cdc2 authored by Brad King on 19 August 2020, 16:58:54 UTC, committed by Brad King on 19 August 2020, 17:07:30 UTC
1 parent 7d0fa4a
Raw File
Tip revision: 387ea7185306455980a32ed970d2b0ac37d1cdc2 authored by Brad King on 19 August 2020, 16:58:54 UTC
curl: Set build options the way we need for CMake
Tip revision: 387ea71
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