From 243ba160de326624e79285dffc3ae42693247adf Mon Sep 17 00:00:00 2001 From: Bernhard Froehler Date: Wed, 12 Nov 2025 16:01:19 +0100 Subject: [PATCH] [commontk] cmake: Add 6.10 support (additional CorePrivate component) --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d8abaf44..91a52a92 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,6 +141,9 @@ endforeach() if(BUILD_TESTING) list(APPEND qt_required_components Test) endif() +if("${Qt${PythonQt_QT_VERSION}_VERSION}" VERSION_GREATER_EQUAL "6.10.0") + list(APPEND qt_required_components CorePrivate) +endif() list(REMOVE_DUPLICATES qt_required_components) message(STATUS "${PROJECT_NAME}: Required Qt components [${qt_required_components}]")