Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2018-07-17 23:44:47 +0300
committerRay Molenkamp <github@lazydodo.com>2018-07-17 23:44:47 +0300
commit41045478ab7fd3efc989952bfd7a83c5cbb88dbc (patch)
treebc2e2cfd61a241e1e0652ce0640a6cae0ed05384 /build_files/windows/autodetect_msvc.cmd
parentefe94793c0854454517f49f833f688e0652f4ec0 (diff)
make.bat: remove msvc2013 support.
Diffstat (limited to 'build_files/windows/autodetect_msvc.cmd')
-rw-r--r--build_files/windows/autodetect_msvc.cmd5
1 files changed, 1 insertions, 4 deletions
diff --git a/build_files/windows/autodetect_msvc.cmd b/build_files/windows/autodetect_msvc.cmd
index 6fce3829e7b..77dc005cd18 100644
--- a/build_files/windows/autodetect_msvc.cmd
+++ b/build_files/windows/autodetect_msvc.cmd
@@ -1,14 +1,11 @@
echo No explicit msvc version requested, autodetecting version.
-call "%~dp0\detect_msvc2013.cmd"
+call "%~dp0\detect_msvc2017.cmd"
if %ERRORLEVEL% EQU 0 goto DetectionComplete
call "%~dp0\detect_msvc2015.cmd"
if %ERRORLEVEL% EQU 0 goto DetectionComplete
-call "%~dp0\detect_msvc2017.cmd"
-if %ERRORLEVEL% EQU 0 goto DetectionComplete
-
echo Compiler Detection failed. Use verbose switch for more information.
exit /b 1