Added support for new VS2017 version.
This commit is contained in:
parent
c4da219a1e
commit
d5a84818c0
@ -66,7 +66,13 @@ namespace MUtils
|
|||||||
#error Compiler is not supported!
|
#error Compiler is not supported!
|
||||||
#endif
|
#endif
|
||||||
#elif defined(_MSC_VER)
|
#elif defined(_MSC_VER)
|
||||||
#if (_MSC_VER == 1910)
|
#if (_MSC_VER == 1911)
|
||||||
|
#if (_MSC_FULL_VER == 191125506)
|
||||||
|
static const char *const COMPILER_VERS = "MSVC 2017.3";
|
||||||
|
#else
|
||||||
|
#error Compiler version is not supported yet!
|
||||||
|
#endif
|
||||||
|
#elif (_MSC_VER == 1910)
|
||||||
#if ((_MSC_FULL_VER >= 191025017) && (_MSC_FULL_VER <= 191025019))
|
#if ((_MSC_FULL_VER >= 191025017) && (_MSC_FULL_VER <= 191025019))
|
||||||
static const char *const COMPILER_VERS = "MSVC 2017.2";
|
static const char *const COMPILER_VERS = "MSVC 2017.2";
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user