You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if not %errorlevel% equ 0 for /f "tokens=2*" %%i in ('reg query HKLM\SOFTWARE\Kitware\CMake /v InstallDir ^| findstr REG_SZ') do if exist "%%~j" set "PATH=%PATH%;%%~j\bin"
where /q cmake
if not %errorlevel% equ 0 echo CMake not found! && exit /b %errorlevel%
rem Detect GCC
set "PATH=%PATH%;C:\Qt\Tools\llvm-mingw1706_64\bin"
where /q g++
if not %errorlevel% equ 0 echo GCC not found! && exit /b %errorlevel%