mirror of
https://github.com/reactos/CMake.git
synced 2024-11-23 19:49:51 +00:00
80f120a85f
Add entries in Modules and Modules/Platform to support Objective-C compiler determination and identification. Add Modules to check Objective-C compiler flags, source compilations, program checks, etc... Use OBJC as the designator of the language, eg: project(foo OBJC) Add various tests for Objective-C language features. Add tests to preserve C++ handling of .m and .mm files when OBJC is not a configured language. Co-Authored-By: Cristian Adam <cristian.adam@gmail.com>
21 lines
459 B
Objective-C
21 lines
459 B
Objective-C
#ifdef __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;
|
|
}
|