summaryrefslogtreecommitdiffstats
path: root/examples/gui/analogclock
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2021-12-15 16:31:49 +0100
committerKai Köhne <kai.koehne@qt.io>2021-12-17 10:38:49 +0100
commit4f699e82074b1928e0e9477759c9d5666cea662c (patch)
tree093a50bc4a011f54b83277f31f0917def54b4c53 /examples/gui/analogclock
parent131681652eb609a19eac963222c553442138ae12 (diff)
analogclock example: Clean up link_libraries
analogclock doesn't use widgets. Pick-to: 6.3 Change-Id: I75b5efc0bec786b45f8273e3d21c9be204e18225 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'examples/gui/analogclock')
-rw-r--r--examples/gui/analogclock/CMakeLists.txt6
1 files changed, 1 insertions, 5 deletions
diff --git a/examples/gui/analogclock/CMakeLists.txt b/examples/gui/analogclock/CMakeLists.txt
index 57b73f4820..837971b99e 100644
--- a/examples/gui/analogclock/CMakeLists.txt
+++ b/examples/gui/analogclock/CMakeLists.txt
@@ -13,7 +13,7 @@ endif()
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/gui/gui_analogclock")
-find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)
+find_package(Qt6 REQUIRED COMPONENTS Core Gui)
qt_add_executable(gui_analogclock
../rasterwindow/rasterwindow.cpp ../rasterwindow/rasterwindow.h
@@ -30,10 +30,6 @@ target_include_directories(gui_analogclock PUBLIC
)
target_link_libraries(gui_analogclock PUBLIC
- Qt::Gui
-)
-
-target_link_libraries(gui_analogclock PUBLIC
Qt::Core
Qt::Gui
)