From 8d6c16863188b26373a72e4c3c2a775c01fa1fcf Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Tue, 10 Jan 2023 09:58:49 +0100 Subject: [PATCH] Fix build of Designer plugin Qt 6 has Qt(6)::DesignerComponentsPrivate instead of DesignerComponents Amends 55fa109b5935725e8f4c0b1bbd286017b6f52979 Change-Id: I96e152dd1e69095ca23784a5ac92f214b39fa608 Reviewed-by: Christian Stenger --- src/plugins/designer/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/designer/CMakeLists.txt b/src/plugins/designer/CMakeLists.txt index 909e2df6d1b..e2c26b39068 100644 --- a/src/plugins/designer/CMakeLists.txt +++ b/src/plugins/designer/CMakeLists.txt @@ -1,8 +1,8 @@ add_qtc_plugin(Designer PLUGIN_CLASS FormEditorPlugin - CONDITION TARGET Qt::DesignerComponents AND TARGET Qt::Designer + CONDITION TARGET Qt::DesignerComponentsPrivate AND TARGET Qt::Designer DEPENDS designerintegrationv2 - Qt::Designer Qt::PrintSupport Qt::DesignerComponents + Qt::Designer Qt::PrintSupport Qt::DesignerComponentsPrivate DEFINES CPP_ENABLED PLUGIN_DEPENDS Core CppEditor ProjectExplorer QtSupport ResourceEditor TextEditor PLUGIN_TEST_DEPENDS CppEditor @@ -33,7 +33,7 @@ add_qtc_plugin(Designer ) extend_qtc_plugin(Designer - CONDITION WITH_TESTS AND TARGET Qt::DesignerComponents AND TARGET Qt::Designer + CONDITION WITH_TESTS SOURCES gotoslot_test.cpp )