We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de224d6 commit 1be7eb2Copy full SHA for 1be7eb2
vcbuild.bat
@@ -106,6 +106,17 @@ ENDLOCAL
106
@rem Skip project generation if requested.
107
if defined nobuild goto sign
108
109
+@rem Look for Visual Studio 2015
110
+if not defined VS140COMNTOOLS goto vc-set-2013
111
+if not exist "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat" goto vc-set-2013
112
+if "%VCVARS_VER%" NEQ "140" (
113
+ call "%VS140COMNTOOLS%\..\..\vc\vcvarsall.bat"
114
+ SET VCVARS_VER=140
115
+)
116
+if not defined VCINSTALLDIR goto vc-set-2013
117
+set GYP_MSVS_VERSION=2015
118
+goto msbuild-found
119
+
120
@rem Look for Visual Studio 2013
121
if not defined VS120COMNTOOLS goto msbuild-not-found
122
if not exist "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-not-found
0 commit comments