diff options
| author | Sze Howe Koh <szehowe.koh@gmail.com> | 2025-08-27 15:52:01 +0800 |
|---|---|---|
| committer | Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> | 2025-09-12 04:28:07 +0000 |
| commit | 1272ee3f0432dcf75f4a16889f60fb1a3a64274e (patch) | |
| tree | ba9dbc8663ae36a5166420ba839daab86375c8fe | |
| parent | 1dd62d3df2ebbec8f9e83fb9e2c7f9af508518de (diff) | |
Spreadsheets example: Bump minimum required Qt version
Amends 9601b74dabed53e93a7a5144d4c1fadb7876db18
The example no longer runs with Qt 6.9 or older as it uses the new
(Horizontal|Vertical)HeaderViewDelegate types.
Change-Id: I8430f4e9a48ddc9f72b20a4e998fde21480c4032
Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
(cherry picked from commit 130d46f2c76433f59357e9ca29b8a04b8fbf7a7a)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit ecd5ad3f0d5eba59983d3fd1adc144a98d693855)
| -rw-r--r-- | examples/quickcontrols/spreadsheets/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/quickcontrols/spreadsheets/CMakeLists.txt b/examples/quickcontrols/spreadsheets/CMakeLists.txt index e8fe5ce0b4..dd87e903af 100644 --- a/examples/quickcontrols/spreadsheets/CMakeLists.txt +++ b/examples/quickcontrols/spreadsheets/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2024 The Qt Company Ltd. +# Copyright (C) 2025 The Qt Company Ltd. # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause cmake_minimum_required(VERSION 3.16) @@ -6,9 +6,9 @@ project(SpreadsheetsExample VERSION 1.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD_REQUIRED ON) -find_package(Qt6 6.8 REQUIRED COMPONENTS Core Gui Qml Quick) +find_package(Qt6 REQUIRED COMPONENTS Core Gui Qml Quick) -qt_standard_project_setup(REQUIRES 6.8) +qt_standard_project_setup(REQUIRES 6.10) add_subdirectory(Spreadsheets) |
