summaryrefslogtreecommitdiffstats
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/CMakeLists.txt2
-rw-r--r--framework/actions/CMakeLists.txt2
-rw-r--r--framework/actions/actionhandler.h2
-rw-r--r--framework/domain/CMakeLists.txt2
-rw-r--r--framework/domain/controller.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/framework/CMakeLists.txt b/framework/CMakeLists.txt
index 86a61bcf..aa2362f1 100644
--- a/framework/CMakeLists.txt
+++ b/framework/CMakeLists.txt
@@ -19,7 +19,7 @@ find_package(Qt5 COMPONENTS REQUIRED Core Qml)
19find_package(KF5MimeTreeParser "5.1.46" CONFIG REQUIRED) 19find_package(KF5MimeTreeParser "5.1.46" CONFIG REQUIRED)
20find_package(KF5Mime "4.87.0" CONFIG REQUIRED) 20find_package(KF5Mime "4.87.0" CONFIG REQUIRED)
21find_package(Sink CONFIG REQUIRED) 21find_package(Sink CONFIG REQUIRED)
22find_package(KF5Async CONFIG REQUIRED) 22find_package(KAsync CONFIG REQUIRED)
23find_package(QGpgme CONFIG REQUIRED) 23find_package(QGpgme CONFIG REQUIRED)
24find_package(KF5Codecs CONFIG REQUIRED) 24find_package(KF5Codecs CONFIG REQUIRED)
25 25
diff --git a/framework/actions/CMakeLists.txt b/framework/actions/CMakeLists.txt
index 9fc43b9b..2b1bb230 100644
--- a/framework/actions/CMakeLists.txt
+++ b/framework/actions/CMakeLists.txt
@@ -9,7 +9,7 @@ set(SRCS
9 9
10add_library(actionplugin SHARED ${SRCS}) 10add_library(actionplugin SHARED ${SRCS})
11 11
12target_link_libraries(actionplugin KF5::Async sink) 12target_link_libraries(actionplugin KAsync sink)
13qt5_use_modules(actionplugin Core Quick Qml) 13qt5_use_modules(actionplugin Core Quick Qml)
14 14
15install(TARGETS actionplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/actions) 15install(TARGETS actionplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/actions)
diff --git a/framework/actions/actionhandler.h b/framework/actions/actionhandler.h
index c0e1b318..fbaedad1 100644
--- a/framework/actions/actionhandler.h
+++ b/framework/actions/actionhandler.h
@@ -21,7 +21,7 @@
21#include <QObject> 21#include <QObject>
22#include <QMultiMap> 22#include <QMultiMap>
23#include <functional> 23#include <functional>
24#include <Async/Async> 24#include <KAsync/Async>
25 25
26#include "actionresult.h" 26#include "actionresult.h"
27#include "context.h" 27#include "context.h"
diff --git a/framework/domain/CMakeLists.txt b/framework/domain/CMakeLists.txt
index 31ca5df9..9abc54b0 100644
--- a/framework/domain/CMakeLists.txt
+++ b/framework/domain/CMakeLists.txt
@@ -31,7 +31,7 @@ find_package(KF5 REQUIRED COMPONENTS Package)
31add_library(mailplugin SHARED ${mailplugin_SRCS}) 31add_library(mailplugin SHARED ${mailplugin_SRCS})
32 32
33qt5_use_modules(mailplugin Core Quick Qml WebKitWidgets Test) 33qt5_use_modules(mailplugin Core Quick Qml WebKitWidgets Test)
34target_link_libraries(mailplugin actionplugin settingsplugin sink mimetreeparser KF5::MimeTreeParser KF5::Codecs KF5::Package KF5::Async) 34target_link_libraries(mailplugin actionplugin settingsplugin sink mimetreeparser KF5::MimeTreeParser KF5::Codecs KF5::Package KAsync)
35 35
36add_subdirectory(actions/tests) 36add_subdirectory(actions/tests)
37 37
diff --git a/framework/domain/controller.h b/framework/domain/controller.h
index 8e6d7155..bf2a7ace 100644
--- a/framework/domain/controller.h
+++ b/framework/domain/controller.h
@@ -20,7 +20,7 @@
20 20
21#include <QObject> 21#include <QObject>
22#include <QVariant> 22#include <QVariant>
23#include <Async/Async> 23#include <KAsync/Async>
24 24
25#define KUBE_CONTROLLER_PROPERTY(TYPE, NAME, LOWERCASENAME) \ 25#define KUBE_CONTROLLER_PROPERTY(TYPE, NAME, LOWERCASENAME) \
26 public: Q_PROPERTY(TYPE LOWERCASENAME MEMBER m##NAME NOTIFY LOWERCASENAME##Changed) \ 26 public: Q_PROPERTY(TYPE LOWERCASENAME MEMBER m##NAME NOTIFY LOWERCASENAME##Changed) \