CMake/Modules/Compiler/OpenWatcom-DetermineCompile...

11 lines
363 B
CMake

set(_compiler_id_pp_test "defined(__WATCOMC__)")
set(_compiler_id_version_compute "
/* __WATCOMC__ = VVRP + 1100 */
# define @PREFIX@COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define @PREFIX@COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif")