From bec264c15fe07382009def3c4bbef3f3b689b6eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20K=C3=B6hne?= Date: Mon, 14 Nov 2022 14:49:32 +0100 Subject: Examples: Use Qt6:: to qualify Qt CMake packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is what we promote also in the documentation. Change-Id: If91aebafe861b0c934acbb2c69afd182abc3345d Reviewed-by: Jörg Bornemann --- examples/widgets/painting/shared/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/widgets/painting/shared/CMakeLists.txt') diff --git a/examples/widgets/painting/shared/CMakeLists.txt b/examples/widgets/painting/shared/CMakeLists.txt index 48fca30029..f3d6fd49de 100644 --- a/examples/widgets/painting/shared/CMakeLists.txt +++ b/examples/widgets/painting/shared/CMakeLists.txt @@ -11,16 +11,16 @@ target_sources(painting_shared PRIVATE ${moc_files} ) -target_link_libraries(painting_shared PUBLIC Qt::Widgets) +target_link_libraries(painting_shared PUBLIC Qt6::Widgets) target_include_directories(painting_shared PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") ## Scopes: ##################################################################### -if (TARGET Qt::OpenGL OR QT_FEATURE_opengles2) +if (TARGET Qt6::OpenGL OR QT_FEATURE_opengles2) target_compile_definitions(painting_shared PRIVATE QT_OPENGL_SUPPORT) target_link_libraries(painting_shared PUBLIC - Qt::OpenGL + Qt6::OpenGL ) qt6_wrap_cpp(moc_files_gl fbopaintdevice.h) # no automoc for OBJECT libs target_sources(painting_shared PRIVATE fbopaintdevice.cpp fbopaintdevice.h ${moc_files_gl}) -- cgit v1.2.3