Added support for Visual Studio 2019.1 (v16.1).
This commit is contained in:
parent
5b013d080d
commit
f1b0d32f33
@ -67,7 +67,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 == 1920)
|
#if (_MSC_VER == 1921)
|
||||||
|
#if((_MSC_FULL_VER >= 192127702) && (_MSC_FULL_VER <= 192127702))
|
||||||
|
"MSVC 2019.1";
|
||||||
|
#else
|
||||||
|
#error Compiler version is not supported yet!
|
||||||
|
#endif
|
||||||
|
#elif (_MSC_VER == 1920)
|
||||||
#if((_MSC_FULL_VER >= 192027508) && (_MSC_FULL_VER <= 192027508))
|
#if((_MSC_FULL_VER >= 192027508) && (_MSC_FULL_VER <= 192027508))
|
||||||
"MSVC 2019.0";
|
"MSVC 2019.0";
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user