File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -41,17 +41,20 @@ if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
4141REM Check if already running in an environment with VS setup
4242if defined VCINSTALLDIR (
4343 if defined VisualStudioVersion (
44- echo Existing Visual Studio environment detected...
4544 if " %VisualStudioVersion% " == " 16.0" (
45+ echo Existing Visual Studio 2019 environment detected...
4646 set MSVC_VER = 16
4747 goto MSVCVarsDone
4848 ) else if " %VisualStudioVersion% " == " 15.0" (
49+ echo Existing Visual Studio 2017 environment detected...
4950 set MSVC_VER = 15
5051 goto MSVCVarsDone
5152 ) else if " %VisualStudioVersion% " == " 14.0" (
53+ echo Existing Visual Studio 2015 environment detected...
5254 set MSVC_VER = 14
5355 goto MSVCVarsDone
5456 ) else if " %VisualStudioVersion% " == " 12.0" (
57+ echo Existing Visual Studio 2013 environment detected...
5558 set MSVC_VER = 12
5659 goto MSVCVarsDone
5760 ) else (
You can’t perform that action at this time.
0 commit comments