From f5b89884e0c9c23d2d4c85e7c240642b78d8803c Mon Sep 17 00:00:00 2001 From: Melvin Keskin <melvo@olomono.de> Date: Wed, 18 Dec 2024 22:21:00 +0100 Subject: [PATCH 1/2] src: CMakeLists: Sort linked libraries --- src/CMakeLists.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1c3bfceca..9b93991e2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -250,22 +250,22 @@ endif() ecm_create_qm_loader(${PROJECT_NAME} kaidan_qt) target_link_libraries(${PROJECT_NAME} + ICU::uc + KF6::CoreAddons + KF6::KIOCore + KF6::KIOWidgets Qt::Core - Qt::Sql + Qt::Location + Qt::Multimedia + Qt::Network + Qt::Positioning Qt::Qml Qt::Quick + Qt::QuickControls2 + Qt::Sql Qt::Svg - Qt::Network Qt::Xml - Qt::Multimedia - Qt::Positioning - Qt::Location - Qt::QuickControls2 - KF6::CoreAddons - KF6::KIOCore - KF6::KIOWidgets QXmpp::QXmpp QXmpp::Omemo - ICU::uc ${__Qt6Widgets_LIBRARIES} ${__KF6Notifications_LIBRARIES} ) -- GitLab From a927b2e4715b7d1c4203fec8a3f452d06e996302 Mon Sep 17 00:00:00 2001 From: Laurent Montel <montel@kde.org> Date: Wed, 18 Dec 2024 07:03:52 +0100 Subject: [PATCH 2/2] src: CMakeLists: Add missing Qt::Concurrent --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9b93991e2..96c56aa3d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -254,6 +254,7 @@ target_link_libraries(${PROJECT_NAME} KF6::CoreAddons KF6::KIOCore KF6::KIOWidgets + Qt::Concurrent Qt::Core Qt::Location Qt::Multimedia -- GitLab