From 5327d4df257928b82e09fe8476ee2ca774a02a8f Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 31 Jan 2026 13:39:32 -0500 Subject: [PATCH] Bump minimum Qt version to 6.9 Supposedly someone else had trouble with 6.8, see #24. We build on the CI with 6.10 anyway. --- BUILDING.md | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 7e87904..5afddc1 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -22,7 +22,7 @@ When it's complete, a file called `novus.flatpak` will appear in the repository * [Linux](https://kernel.org/) or Windows * macOS may work but is currently unsupported. Patches are accepted to fix any problems with macOS builds though. * [CMake](https://cmake.org) 3.25 or later -* [Qt](https://www.qt.io/) 6.6 or later +* [Qt](https://www.qt.io/) 6.9 or later * [KDE Frameworks](https://develop.kde.org/products/frameworks/) 6 * [Rust](https://www.rust-lang.org/) * [Corrosion](https://github.com/corrosion-rs/corrosion) diff --git a/CMakeLists.txt b/CMakeLists.txt index cfceffd..6767eef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ option(BUILD_FLATPAK "Build for Flatpak." OFF) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) -set(QT_MIN_VERSION 6.8) +set(QT_MIN_VERSION 6.9) set(KF_MIN_VERSION 6.8) find_package(ECM ${KF_MIN_VERSION} REQUIRED NO_MODULE)