diff options
Diffstat (limited to 'framework/src')
5 files changed, 8 insertions, 8 deletions
diff --git a/framework/src/CMakeLists.txt b/framework/src/CMakeLists.txt index a07bdb75..8ba924fe 100644 --- a/framework/src/CMakeLists.txt +++ b/framework/src/CMakeLists.txt | |||
@@ -72,7 +72,7 @@ target_link_libraries(kubeframework | |||
72 | KF5::Codecs | 72 | KF5::Codecs |
73 | KF5::Contacts | 73 | KF5::Contacts |
74 | KAsync | 74 | KAsync |
75 | gpgme | 75 | ${GPGME_LIBRARIES} |
76 | ) | 76 | ) |
77 | install(TARGETS kubeframework DESTINATION ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) | 77 | install(TARGETS kubeframework DESTINATION ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) |
78 | 78 | ||
diff --git a/framework/src/domain/mime/CMakeLists.txt b/framework/src/domain/mime/CMakeLists.txt index 9b4da136..134bf8f0 100644 --- a/framework/src/domain/mime/CMakeLists.txt +++ b/framework/src/domain/mime/CMakeLists.txt | |||
@@ -5,5 +5,5 @@ add_library(mailcrypto STATIC | |||
5 | target_link_libraries(mailcrypto | 5 | target_link_libraries(mailcrypto |
6 | Qt5::Core | 6 | Qt5::Core |
7 | KF5::Mime | 7 | KF5::Mime |
8 | gpgme | 8 | ${GPGME_LIBRARIES} |
9 | ) | 9 | ) |
diff --git a/framework/src/domain/mime/mimetreeparser/CMakeLists.txt b/framework/src/domain/mime/mimetreeparser/CMakeLists.txt index 432234cf..f9452f3c 100644 --- a/framework/src/domain/mime/mimetreeparser/CMakeLists.txt +++ b/framework/src/domain/mime/mimetreeparser/CMakeLists.txt | |||
@@ -47,7 +47,7 @@ target_link_libraries(kube_otp | |||
47 | 47 | ||
48 | target_link_libraries(kube_otp | 48 | target_link_libraries(kube_otp |
49 | PRIVATE | 49 | PRIVATE |
50 | gpgme | 50 | ${GPGME_LIBRARIES} |
51 | mailcrypto | 51 | mailcrypto |
52 | KF5::Codecs | 52 | KF5::Codecs |
53 | Qt5::Gui | 53 | Qt5::Gui |
diff --git a/framework/src/domain/mime/mimetreeparser/autotests/CMakeLists.txt b/framework/src/domain/mime/mimetreeparser/autotests/CMakeLists.txt index e67884e0..55bc4647 100644 --- a/framework/src/domain/mime/mimetreeparser/autotests/CMakeLists.txt +++ b/framework/src/domain/mime/mimetreeparser/autotests/CMakeLists.txt | |||
@@ -15,7 +15,7 @@ macro(add_mimetreeparser_unittest _source) | |||
15 | ecm_add_test(${_source} util.cpp setupenv.cpp | 15 | ecm_add_test(${_source} util.cpp setupenv.cpp |
16 | TEST_NAME ${_name} | 16 | TEST_NAME ${_name} |
17 | NAME_PREFIX "mimetreeparser-" | 17 | NAME_PREFIX "mimetreeparser-" |
18 | LINK_LIBRARIES kube_otp Qt5::Test KF5::Mime gpgme | 18 | LINK_LIBRARIES kube_otp Qt5::Test KF5::Mime ${GPGME_LIBRARIES} |
19 | ) | 19 | ) |
20 | endmacro () | 20 | endmacro () |
21 | 21 | ||
@@ -24,7 +24,7 @@ macro(add_mimetreeparser_class_unittest _source _additionalSource) | |||
24 | ecm_add_test(${_source} ${_additionalSource} | 24 | ecm_add_test(${_source} ${_additionalSource} |
25 | TEST_NAME ${_name} | 25 | TEST_NAME ${_name} |
26 | NAME_PREFIX "mimetreeparser-" | 26 | NAME_PREFIX "mimetreeparser-" |
27 | LINK_LIBRARIES kube_otp Qt5::Test KF5::Mime gpgme | 27 | LINK_LIBRARIES kube_otp Qt5::Test KF5::Mime ${GPGME_LIBRARIES} |
28 | ) | 28 | ) |
29 | endmacro () | 29 | endmacro () |
30 | 30 | ||
@@ -37,7 +37,7 @@ macro(add_mimetreeparser_crypto_unittest _source) | |||
37 | kube_otp | 37 | kube_otp |
38 | Qt5::Test | 38 | Qt5::Test |
39 | KF5::Mime | 39 | KF5::Mime |
40 | gpgme | 40 | ${GPGME_LIBRARIES} |
41 | ) | 41 | ) |
42 | add_gpg_crypto_test(${_name} mimetreeparser-${_name}) | 42 | add_gpg_crypto_test(${_name} mimetreeparser-${_name}) |
43 | endmacro () | 43 | endmacro () |
diff --git a/framework/src/domain/mime/mimetreeparser/tests/CMakeLists.txt b/framework/src/domain/mime/mimetreeparser/tests/CMakeLists.txt index fcb1988a..ee52fa2a 100644 --- a/framework/src/domain/mime/mimetreeparser/tests/CMakeLists.txt +++ b/framework/src/domain/mime/mimetreeparser/tests/CMakeLists.txt | |||
@@ -15,11 +15,11 @@ target_link_libraries(mimetreeparsertest | |||
15 | Qt5::Core | 15 | Qt5::Core |
16 | Qt5::Test | 16 | Qt5::Test |
17 | KF5::Mime | 17 | KF5::Mime |
18 | gpgme | 18 | ${GPGME_LIBRARIES} |
19 | ) | 19 | ) |
20 | 20 | ||
21 | ecm_add_test(gpgerrortest.cpp | 21 | ecm_add_test(gpgerrortest.cpp |
22 | TEST_NAME "gpgerrortest" | 22 | TEST_NAME "gpgerrortest" |
23 | NAME_PREFIX "mimetreeparser-" | 23 | NAME_PREFIX "mimetreeparser-" |
24 | LINK_LIBRARIES Qt5::Core Qt5::Test kube_otp gpgme | 24 | LINK_LIBRARIES Qt5::Core Qt5::Test kube_otp ${GPGME_LIBRARIES} |
25 | ) | 25 | ) |