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-05-30 19:54:06 +0300
committerRay Molenkamp <github@lazydodo.com>2018-05-30 20:11:35 +0300
commitc0f42a7526c2bffee081135ea6e9420813b4c16e (patch)
tree6fa9a9d2a18da6f76811d5f0cdc2e6cc54646b2e /build_files
parent10a2562bc5d4c873bbe58e4aa3d19522080d1f2b (diff)
make.bat: fix support for building with just the build tools installed.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/windows/detect_msvc2017.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/windows/detect_msvc2017.cmd b/build_files/windows/detect_msvc2017.cmd
index 6a82adb5a4d..90fad8744b5 100644
--- a/build_files/windows/detect_msvc2017.cmd
+++ b/build_files/windows/detect_msvc2017.cmd
@@ -12,7 +12,7 @@ if not exist "%vs_where%" (
goto FAIL
)
)
-for /f "usebackq tokens=1* delims=: " %%i in (`"%vs_where%" -latest %VSWHERE_ARGS% -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64`) do (
+for /f "usebackq tokens=1* delims=: " %%i in (`"%vs_where%" -products * -latest %VSWHERE_ARGS% -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64`) do (
if /i "%%i"=="installationPath" set VS_InstallDir=%%j
)