Added support for Visual Studio 2013 with Update 5.

This commit is contained in:
LoRd_MuldeR 2015-07-24 22:35:53 +02:00
parent 4f114738e2
commit 910de3d3a7

View File

@ -75,6 +75,8 @@ namespace MUtils
static const char *const COMPILER_VERS = "MSVC 2013.3"; static const char *const COMPILER_VERS = "MSVC 2013.3";
#elif (_MSC_FULL_VER == 180031101) #elif (_MSC_FULL_VER == 180031101)
static const char *const COMPILER_VERS = "MSVC 2013.4"; static const char *const COMPILER_VERS = "MSVC 2013.4";
#elif (_MSC_FULL_VER == 180040629)
static const char *const COMPILER_VERS = "MSVC 2013.5";
#else #else
#error Compiler version is not supported yet! #error Compiler version is not supported yet!
#endif #endif