From f7bd24db34981cd722accc647714d4330f34fb57 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 9 Nov 2023 20:07:59 -0500 Subject: [PATCH] Depend on QCoro::Network For awaiting on QNetworkReply --- CMakeLists.txt | 2 +- src/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a8a52996..f69627836 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -130,7 +130,7 @@ set_package_properties(KQuickImageEditor PROPERTIES PURPOSE "Add image editing capability to image attachments" ) -find_package(QCoro6 0.4 COMPONENTS Core REQUIRED) +find_package(QCoro6 0.4 COMPONENTS Core Network REQUIRED) qcoro_enable_coroutines() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f33dc48e1..49efc74c2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -376,6 +376,7 @@ target_link_libraries(neochat PUBLIC QuotientQt6 cmark::cmark QCoro::Core + QCoro::Network ) kconfig_add_kcfg_files(neochat GENERATE_MOC neochatconfig.kcfgc)