Added support for Visual Studio 2019.5 (v16.5) + simplified detection for newer versions of Visual Studio.
This commit is contained in:
parent
ad7d280f22
commit
b3a4c34e1f
@ -67,80 +67,32 @@ 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 == 1924)
|
#if (_MSC_VER == 1925)
|
||||||
#if((_MSC_FULL_VER >= 192428314) && (_MSC_FULL_VER <= 192428314))
|
"MSVC 2019.5";
|
||||||
|
#elif (_MSC_VER == 1924)
|
||||||
"MSVC 2019.4";
|
"MSVC 2019.4";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1923)
|
#elif (_MSC_VER == 1923)
|
||||||
#if((_MSC_FULL_VER >= 192328105) && (_MSC_FULL_VER <= 192328105))
|
|
||||||
"MSVC 2019.3";
|
"MSVC 2019.3";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1922)
|
#elif (_MSC_VER == 1922)
|
||||||
#if((_MSC_FULL_VER >= 192227905) && (_MSC_FULL_VER <= 192227905))
|
|
||||||
"MSVC 2019.2";
|
"MSVC 2019.2";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1921)
|
#elif (_MSC_VER == 1921)
|
||||||
#if((_MSC_FULL_VER >= 192127702) && (_MSC_FULL_VER <= 192127702))
|
|
||||||
"MSVC 2019.1";
|
"MSVC 2019.1";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1920)
|
#elif (_MSC_VER == 1920)
|
||||||
#if((_MSC_FULL_VER >= 192027508) && (_MSC_FULL_VER <= 192027508))
|
|
||||||
"MSVC 2019.0";
|
"MSVC 2019.0";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1916)
|
#elif (_MSC_VER == 1916)
|
||||||
#if((_MSC_FULL_VER >= 191627024) && (_MSC_FULL_VER <= 191627038))
|
|
||||||
"MSVC 2017.9";
|
"MSVC 2017.9";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1915)
|
#elif (_MSC_VER == 1915)
|
||||||
#if((_MSC_FULL_VER >= 191526726) && (_MSC_FULL_VER <= 191526732))
|
|
||||||
"MSVC 2017.8";
|
"MSVC 2017.8";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1914)
|
#elif (_MSC_VER == 1914)
|
||||||
#if((_MSC_FULL_VER >= 191426430) && (_MSC_FULL_VER <= 191426433))
|
|
||||||
"MSVC 2017.7";
|
"MSVC 2017.7";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1913)
|
#elif (_MSC_VER == 1913)
|
||||||
#if((_MSC_FULL_VER >= 191326128) && (_MSC_FULL_VER <= 191326132))
|
|
||||||
"MSVC 2017.6";
|
"MSVC 2017.6";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1912)
|
#elif (_MSC_VER == 1912)
|
||||||
#if((_MSC_FULL_VER >= 191225830) && (_MSC_FULL_VER <= 191225835))
|
|
||||||
"MSVC 2017.5";
|
"MSVC 2017.5";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1911)
|
#elif (_MSC_VER == 1911)
|
||||||
#if((_MSC_FULL_VER >= 191125542) && (_MSC_FULL_VER <= 191125547))
|
|
||||||
"MSVC 2017.4";
|
"MSVC 2017.4";
|
||||||
#elif((_MSC_FULL_VER >= 191125506) && (_MSC_FULL_VER <= 191125508))
|
|
||||||
"MSVC 2017.3";
|
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1910)
|
#elif (_MSC_VER == 1910)
|
||||||
#if ((_MSC_FULL_VER >= 191025017) && (_MSC_FULL_VER <= 191025019))
|
|
||||||
"MSVC 2017.2";
|
"MSVC 2017.2";
|
||||||
#else
|
|
||||||
#error Compiler version is not supported yet!
|
|
||||||
#endif
|
|
||||||
#elif (_MSC_VER == 1900)
|
#elif (_MSC_VER == 1900)
|
||||||
#if (_MSC_FULL_VER == 190023026)
|
#if (_MSC_FULL_VER == 190023026)
|
||||||
"MSVC 2015";
|
"MSVC 2015";
|
||||||
|
Loading…
Reference in New Issue
Block a user