Added support for Visual Studio 2017.9 (v15.9.11) and 2019 (16.0.1).

This commit is contained in:
LoRd_MuldeR 2019-04-13 13:30:38 +02:00
parent 46a3a3f69c
commit 10276b75f0

View File

@ -67,8 +67,14 @@ 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 == 1916) #if (_MSC_VER == 1920)
#if((_MSC_FULL_VER >= 191627024) && (_MSC_FULL_VER <= 191627027)) #if((_MSC_FULL_VER >= 192027508) && (_MSC_FULL_VER <= 192027508))
"MSVC 2019.0";
#else
#error Compiler version is not supported yet!
#endif
#elif (_MSC_VER == 1916)
#if((_MSC_FULL_VER >= 191627024) && (_MSC_FULL_VER <= 191627030))
"MSVC 2017.9"; "MSVC 2017.9";
#else #else
#error Compiler version is not supported yet! #error Compiler version is not supported yet!