mirror of
https://github.com/reactos/CMake.git
synced 2025-01-22 11:24:56 +00:00
11 lines
345 B
CMake
11 lines
345 B
CMake
|
|
||
|
set(_compiler_id_pp_test "defined(__WATCOMC__) && __WATCOMC__ < 1200")
|
||
|
|
||
|
set(_compiler_id_version_compute "
|
||
|
/* __WATCOMC__ = VVRR */
|
||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||
|
# if (__WATCOMC__ % 10) > 0
|
||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||
|
# endif")
|