summaryrefslogtreecommitdiff
path: root/src/common/sysinfo.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-08-10 10:36:09 -0700
committerHaru <haru@dotalux.com>2015-08-10 19:42:54 +0200
commit5ad96bcc2af2a5a76348fca87e52a0f038461808 (patch)
tree46a209c636d2139249d123a8cae7e7f44d1c1838 /src/common/sysinfo.c
parentad6e02cc4cd1e3bd079888b1de847788e95e4c3b (diff)
downloadhercules-5ad96bcc2af2a5a76348fca87e52a0f038461808.tar.gz
hercules-5ad96bcc2af2a5a76348fca87e52a0f038461808.tar.bz2
hercules-5ad96bcc2af2a5a76348fca87e52a0f038461808.tar.xz
hercules-5ad96bcc2af2a5a76348fca87e52a0f038461808.zip
Added support for visual Studio 2015
Please report any issues Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/sysinfo.c')
-rw-r--r--src/common/sysinfo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/sysinfo.c b/src/common/sysinfo.c
index a27357e7e..105f300ad 100644
--- a/src/common/sysinfo.c
+++ b/src/common/sysinfo.c
@@ -197,7 +197,9 @@ enum windows_ver_suite {
#define SYSINFO_COMPILER "Microsoft Visual C++ 2012 (v" EXPAND_AND_QUOTE(_MSC_VER) ")"
#elif _MSC_VER >= 1800 && _MSC_VER < 1900
#define SYSINFO_COMPILER "Microsoft Visual C++ 2013 (v" EXPAND_AND_QUOTE(_MSC_VER) ")"
-#else // < 1300 || >= 1900
+#elif _MSC_VER >= 1900 && _MSC_VER < 2000
+#define SYSINFO_COMPILER "Microsoft Visual C++ 2015 (v" EXPAND_AND_QUOTE(_MSC_VER) ")"
+#else // < 1300 || >= 2000
#define SYSINFO_COMPILER "Microsoft Visual C++ v" EXPAND_AND_QUOTE(_MSC_VER)
#endif
#else