Skip to content

Commit 9211924

Browse files
committed
ignore file was hiding the actual tools patch
1 parent 3e8f2b7 commit 9211924

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
diff --git a/tools/msvs_env.bat b/tools/msvs_env.bat
2+
index ac44e293..e2f0b1c4 100644
3+
--- a/tools/msvs_env.bat
4+
+++ b/tools/msvs_env.bat
5+
@@ -37,6 +37,14 @@ for %%x in ("%PROGRAMFILES(X86)%" "%PROGRAMFILES%") do (
6+
)
7+
)
8+
9+
+:: Search for the default VS2019 installation path.
10+
+for %%x in ("%PROGRAMFILES(X86)%" "%PROGRAMFILES%") do (
11+
+ for %%y in (Professional Enterprise Community BuildTools) do (
12+
+ set vcvars="%%~x\Microsoft Visual Studio\2019\%%y\VC\Auxiliary\Build\%vcvarsbat%"
13+
+ if exist !vcvars! goto found_vcvars
14+
+ )
15+
+)
16+
+
17+
echo ERROR: Failed to find vcvars
18+
set ERRORLEVEL=1
19+
goto end

0 commit comments

Comments
 (0)