mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
8c7920b545
- Fixed deploy path with tor - Disabled webui in installer - Optimized file get-gcc-version.bat - Optimized file get-qt-version.bat - Renamed file msys-path.bat to msys2-path.bat - Removed file download-file-wildcard.bat - Removed file winhttpjs.bat - Removed download and usage of wget.exe
25 lines
445 B
Batchfile
25 lines
445 B
Batchfile
:: Usage:
|
|
:: call get-qt-version.bat variable
|
|
|
|
setlocal
|
|
|
|
set Var=%~1
|
|
if "%Var%"=="" (
|
|
echo.
|
|
echo Parameter error.
|
|
exit /B 1
|
|
)
|
|
|
|
set QtVersion=
|
|
|
|
call "%~dp0find-in-path.bat" QMakePath qmake.exe
|
|
if "%QMakePath%"=="" (
|
|
echo.
|
|
echo Cannot find qmake.exe in PATH.
|
|
exit /B 1
|
|
)
|
|
|
|
for /F "tokens=1,2,3,4 delims= " %%A in ('qmake.exe -version') do if "%%A"=="Using" set QtVersion=%%D
|
|
|
|
endlocal & set %Var%=%QtVersion%
|
|
exit /B 0 |