Skip to content

Commit

Permalink
Support Qt6 only. (#397)
Browse files Browse the repository at this point in the history
Remove Qt5 support.

Signed-off-by: Alexander Wenzel <[email protected]>
  • Loading branch information
alexmucde authored and hannesa2 committed Jan 17, 2024
1 parent f0abe2b commit f891f5c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 152 deletions.
30 changes: 5 additions & 25 deletions build_config.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,43 +4,23 @@ echo ************************************

echo *** Setting up environment ***

REM Currently supported combinations by Qt installation
REM 5.12.12 msvc2015,msvc2017
REM 5.15.2 msvc2015,msvc2019
REM 6.2.2 msvc2019

if "%QTVER%"=="" (
REM set QTVER=5.12.12
set QTVER=5.15.2
REM set QTVER=6.4.1
REM set QTVER=6.2.2
REM set QTVER=6.4.3
REM set QTVER=6.5.3
set QTVER=6.6.1
)

if "%MSVC_VER%"=="" (
REM set MSVC_VER=2015
REM set MSVC_VER=2017
set MSVC_VER=2019
)

if "%MSVC_VER%"=="2015" (
if "%MSVC_DIR%"=="" set "MSVC_DIR=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC"
) else (
if exist "C:\Program Files (x86)\Microsoft Visual Studio\%MSVC_VER%\Enterprise\VC\Auxiliary\Build" (
if "%MSVC_DIR%"=="" set "MSVC_DIR=C:\Program Files (x86)\Microsoft Visual Studio\%MSVC_VER%\Enterprise\VC\Auxiliary\Build"
) else (
if "%MSVC_DIR%"=="" set "MSVC_DIR=C:\Program Files (x86)\Microsoft Visual Studio\%MSVC_VER%\BuildTools\VC\Auxiliary\Build"
)
if "%MSVC_DIR%"=="" (
set "MSVC_DIR=C:\Program Files (x86)\Microsoft Visual Studio\%MSVC_VER%\BuildTools\VC\Auxiliary\Build"
)

echo Set QT directory for %QTVER% and %MSVC_VER%
if "%QTDIR%"=="" (
set QTDIR=C:\Qt\%QTVER%\msvc%MSVC_VER%_64
)

if "%QWT%"=="" (
set QWT=6.1.4
REM set QWT=6.1.6
REM set QWT=6.2.0
)

set PATH=%QTDIR%\bin;%MSVC_DIR%;%PATH%
File renamed without changes.
125 changes: 0 additions & 125 deletions build_qwt_windows_qt5_MSVC.bat

This file was deleted.

File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
call build_sdk_windows_qt5_MSVC_cmake.bat
call build_sdk_windows_MSVC_cmake.bat
SET RETCODE=%ERRORLEVEL%
set /p name= Continue
exit /b %RETCODE%
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
call build_sdk_windows_qt5_MSVC.bat
call build_sdk_windows_MSVC.bat
SET RETCODE=%ERRORLEVEL%
set /p name= Continue
exit /b %RETCODE%

0 comments on commit f891f5c

Please sign in to comment.