Commit 646f3bc0af4f283d72bb0d67966908f74471bef7
1 parent
9c44719f
Update Windows image and compiler
Showing
2 changed files
with
3 additions
and
3 deletions
azure-pipelines.yml
azure-pipelines/build-windows.bat
| ... | ... | @@ -2,9 +2,9 @@ |
| 2 | 2 | @rem Usage: build-windows {32|64} {msvc|mingw} |
| 3 | 3 | if %2 == msvc ( |
| 4 | 4 | if %1 == 64 ( |
| 5 | - call "%VS140COMNTOOLS%\..\..\VC\bin\amd64\vcvars64.bat" | |
| 5 | + call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" | |
| 6 | 6 | ) else ( |
| 7 | - call "%VS140COMNTOOLS%\..\..\VC\bin\vcvars32.bat" | |
| 7 | + call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars32.bat" | |
| 8 | 8 | ) |
| 9 | 9 | choco install zip |
| 10 | 10 | bash ./azure-pipelines/build-windows %1 %2 | ... | ... |