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>2020-03-31 22:14:16 +0300
committerRay Molenkamp <github@lazydodo.com>2020-03-31 22:14:16 +0300
commit0062813c731ff2a0866d86a2b0558c67b8091f37 (patch)
tree5f18f0de5954113ca60a8d6106d3e9585f135e78 /build_files/windows
parent5b88ab25bd83804af007136a1c7b9d8a9d1c1514 (diff)
make.bat: Improve messaging when not detecting MSVC
Inspired by @mrwhite in D7295
Diffstat (limited to 'build_files/windows')
-rw-r--r--build_files/windows/detect_msvc_vswhere.cmd8
1 files changed, 7 insertions, 1 deletions
diff --git a/build_files/windows/detect_msvc_vswhere.cmd b/build_files/windows/detect_msvc_vswhere.cmd
index 609375cee89..52f765c20c4 100644
--- a/build_files/windows/detect_msvc_vswhere.cmd
+++ b/build_files/windows/detect_msvc_vswhere.cmd
@@ -27,7 +27,13 @@ if NOT "%verbose%" == "" (
if "%VS_InstallDir%"=="" (
if NOT "%verbose%" == "" (
- echo Visual Studio is detected but the "Desktop development with C++" workload has not been instlled
+ echo.
+ echo Visual Studio is detected but no suitable installation was found.
+ echo.
+ echo Check the "Desktop development with C++" workload has been installed.
+ echo.
+ echo If you are attempting to use either Visual Studio Preview version or the Visual C++ Build tools, Please see 'make help' on how to opt in to those toolsets.
+ echo.
goto FAIL
)
)