mirror of
https://projects.blender.org/blender/blender.git
synced 2025-01-22 23:42:16 -05:00
8e8fdf875d
VS2015 has not been supported for a while now but make.bat still had some support for it.
14 lines
No EOL
399 B
Batchfile
14 lines
No EOL
399 B
Batchfile
echo No explicit msvc version requested, autodetecting version.
|
|
|
|
call "%~dp0\detect_msvc2017.cmd"
|
|
if %ERRORLEVEL% EQU 0 goto DetectionComplete
|
|
|
|
call "%~dp0\detect_msvc2019.cmd"
|
|
if %ERRORLEVEL% EQU 0 goto DetectionComplete
|
|
|
|
echo Compiler Detection failed. Use verbose switch for more information.
|
|
exit /b 1
|
|
|
|
:DetectionComplete
|
|
echo Compiler Detection successful, detected VS%BUILD_VS_YEAR%
|
|
exit /b 0 |