From 83813ee25914d6dbd9d2b5fa2c28286c905ea050 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Tue, 10 Oct 2023 16:46:55 +0100 Subject: [PATCH] Update to Qt 6.6.0 --- .github/workflows/build.yml | 2 +- CMakeLists.txt | 4 ++-- README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 56ce2ce82..3ba85fa73 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: Build on: [push, pull_request] env: - QT_VERSION: 6.5.2 + QT_VERSION: 6.6.0 QT_MODULES: qtwebengine qtwebchannel qtpositioning GCC_VERSION: 11 CLANG_VERSION: 14 diff --git a/CMakeLists.txt b/CMakeLists.txt index 547a93b3b..1bcfde553 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,8 @@ else() endif() find_package(Qt6 COMPONENTS REQUIRED Core) -if(Qt6Core_VERSION VERSION_LESS 6.5.2) - message(FATAL_ERROR "Qt 6.5.2 or later required") +if(Qt6Core_VERSION VERSION_LESS 6.6.0) + message(FATAL_ERROR "Qt 6.6.0 or later required") endif() include_directories(source) diff --git a/README.md b/README.md index 46bdcd4c7..9d2bd0cde 100644 --- a/README.md +++ b/README.md @@ -74,5 +74,5 @@ cmake -B build && cmake --build build --parallel ``` Note however that you will usually also need Qt 6 to be installed and indicate to CMake where it lives: ``` -CMAKE_PREFIX_PATH=/example/path/to/Qt/6.5.2/gcc_64/ cmake -B build && cmake --build build --parallel +CMAKE_PREFIX_PATH=/example/path/to/Qt/6.6.0/gcc_64/ cmake -B build && cmake --build build --parallel ```