From 2fdddd2f795da4645dc9a48fee4865324143a21b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= Date: Mon, 18 Jul 2016 15:35:07 +0200 Subject: first tests with mimetreeparser interface --- framework/domain/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'framework/domain/CMakeLists.txt') diff --git a/framework/domain/CMakeLists.txt b/framework/domain/CMakeLists.txt index ea293655..92a81352 100644 --- a/framework/domain/CMakeLists.txt +++ b/framework/domain/CMakeLists.txt @@ -26,3 +26,5 @@ add_subdirectory(actions/tests) install(TARGETS mailplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/domain) install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/domain) + +add_subdirectory(mimetreeparser) \ No newline at end of file -- cgit v1.2.3 From 349e404b539c1f9d1feb54658e2e6fbbd2165462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= Date: Wed, 10 Aug 2016 13:20:11 +0200 Subject: Use new mimetreeparser interface --- framework/domain/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework/domain/CMakeLists.txt') diff --git a/framework/domain/CMakeLists.txt b/framework/domain/CMakeLists.txt index 92a81352..07f01367 100644 --- a/framework/domain/CMakeLists.txt +++ b/framework/domain/CMakeLists.txt @@ -20,7 +20,7 @@ find_package(KF5 REQUIRED COMPONENTS Package) add_library(mailplugin SHARED ${mailplugin_SRCS}) qt5_use_modules(mailplugin Core Quick Qml WebKitWidgets) -target_link_libraries(mailplugin actionplugin settingsplugin sink KF5::MimeTreeParser KF5::Codecs KF5::Package KF5::Async KF5::IconThemes) +target_link_libraries(mailplugin actionplugin settingsplugin sink mimetreeparser KF5::MimeTreeParser KF5::Codecs KF5::Package KF5::Async KF5::IconThemes) add_subdirectory(actions/tests) -- cgit v1.2.3 From 1974c19eadd497e355ac985a00d0571f3e6c7712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= Date: Tue, 11 Oct 2016 16:18:50 +0200 Subject: create model for new mailviewer --- framework/domain/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'framework/domain/CMakeLists.txt') diff --git a/framework/domain/CMakeLists.txt b/framework/domain/CMakeLists.txt index 07f01367..c41da377 100644 --- a/framework/domain/CMakeLists.txt +++ b/framework/domain/CMakeLists.txt @@ -7,6 +7,8 @@ set(mailplugin_SRCS stringhtmlwriter.cpp composercontroller.cpp messageparser.cpp + messageparser_new.cpp + messageparser_old.cpp mailtemplates.cpp retriever.cpp accountfactory.cpp -- cgit v1.2.3 From 0fa8aa51aac15233820b9f9c576584e6ff8ee151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= Date: Tue, 18 Oct 2016 15:28:45 +0200 Subject: use modeltest fromupstream to make sure, we have a valid model --- framework/domain/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'framework/domain/CMakeLists.txt') diff --git a/framework/domain/CMakeLists.txt b/framework/domain/CMakeLists.txt index 55bc2f24..a31bb016 100644 --- a/framework/domain/CMakeLists.txt +++ b/framework/domain/CMakeLists.txt @@ -10,6 +10,7 @@ set(mailplugin_SRCS messageparser_new.cpp messageparser_old.cpp mailtemplates.cpp + modeltest.cpp retriever.cpp accountfactory.cpp accountscontroller.cpp @@ -22,7 +23,7 @@ find_package(KF5 REQUIRED COMPONENTS Package) add_library(mailplugin SHARED ${mailplugin_SRCS}) -qt5_use_modules(mailplugin Core Quick Qml WebKitWidgets) +qt5_use_modules(mailplugin Core Quick Qml WebKitWidgets Test) target_link_libraries(mailplugin actionplugin settingsplugin sink mimetreeparser KF5::MimeTreeParser KF5::Codecs KF5::Package KF5::Async KF5::IconThemes) add_subdirectory(actions/tests) @@ -30,4 +31,4 @@ add_subdirectory(actions/tests) install(TARGETS mailplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/domain) install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/domain) -add_subdirectory(mimetreeparser) \ No newline at end of file +add_subdirectory(mimetreeparser) -- cgit v1.2.3