summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2017-02-17 18:01:53 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2017-02-17 18:03:37 +0800
commitd52e120f9510e9040696057aa0da0f6ec3959cdd (patch)
tree09f522ecee5daabf5f91fdee02764503ce40e552
parent76ea47cfff778a215e982d86b6c6458bcf69354b (diff)
downloadgobject-introspection-d52e120f9510e9040696057aa0da0f6ec3959cdd.tar.gz
win32/detect-msvc.mak: Support Visual Studio 2017
Sync this file from GLib so that we can support Visual Studio 2017, which is needed for the NMake Makefiles that are used to build the introspection to work (which, are called from the project files).
-rw-r--r--win32/detectenv-msvc.mak4
1 files changed, 3 insertions, 1 deletions
diff --git a/win32/detectenv-msvc.mak b/win32/detectenv-msvc.mak
index 61f979d4..6fd96ccc 100644
--- a/win32/detectenv-msvc.mak
+++ b/win32/detectenv-msvc.mak
@@ -40,8 +40,10 @@ VSVER = 10
VSVER = 11
!elseif $(VCVERSION) > 1799 && $(VCVERSION) < 1900
VSVER = 12
-!elseif $(VCVERSION) > 1899 && $(VCVERSION) < 2000
+!elseif $(VCVERSION) > 1899 && $(VCVERSION) < 1910
VSVER = 14
+!elseif $(VCVERSION) > 1909 && $(VCVERSION) < 2000
+VSVER = 15
!else
VSVER = 0
!endif