9d285600d4
This will allow sharing of the logic of the order to test compilers in and the preprocessor macros used to do that and to determine the version components.
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")
|