Fix missing slash

This commit is contained in:
BlackMark 2020-06-26 11:14:05 +02:00
parent 0c6269fe0b
commit 1c67dab4e0

View File

@ -36,7 +36,7 @@ The following batch script sets up the build environment for an x64 build:
```batch ```batch
REM Set up Microsoft Visual Studio 2017, where <arch> is amd64, x86, etc. REM Set up Microsoft Visual Studio 2017, where <arch> is amd64, x86, etc.
CALL "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64 CALL "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
SET _ROOT=%QTDIR%Src_x64 SET _ROOT=%QTDIR%\Src_x64
SET PATH=%_ROOT%\qtbase\bin;%_ROOT%\gnuwin32\bin;%PATH% SET PATH=%_ROOT%\qtbase\bin;%_ROOT%\gnuwin32\bin;%PATH%
REM Uncomment the below line when using a git checkout of the source repository REM Uncomment the below line when using a git checkout of the source repository
REM SET PATH=%_ROOT%\qtrepotools\bin;%PATH% REM SET PATH=%_ROOT%\qtrepotools\bin;%PATH%