Added support for new VS2017 version.

This commit is contained in:
LoRd_MuldeR 2017-08-19 19:34:46 +02:00
parent c4da219a1e
commit d5a84818c0

View File

@ -66,7 +66,13 @@ namespace MUtils
#error Compiler is not supported!
#endif
#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))
static const char *const COMPILER_VERS = "MSVC 2017.2";
#else