2014-04-22 18:34:47 +04:00
|
|
|
|
|
|
|
set(_compiler_id_version_compute "
|
2014-04-23 13:00:28 +04:00
|
|
|
# define @PREFIX@COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
|
|
|
# define @PREFIX@COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
|
|
|
# define @PREFIX@COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
2014-04-22 18:34:47 +04:00
|
|
|
# if defined(_MSC_VER)
|
2014-04-23 13:00:28 +04:00
|
|
|
# define @PREFIX@SIMULATE_ID \"MSVC\"
|
2014-04-22 18:34:47 +04:00
|
|
|
/* _MSC_VER = VVRR */
|
2014-04-23 13:00:28 +04:00
|
|
|
# define @PREFIX@SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
|
|
# define @PREFIX@SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
2014-04-22 18:34:47 +04:00
|
|
|
# endif")
|