Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KMail
Commits
1c9a6321
Commit
1c9a6321
authored
Apr 26, 2021
by
Nicolas Fella
Browse files
Make dependency on KI18n explicit
It already pulled in by KParts, but we better not rely on that
parent
8f27f46c
Pipeline
#59907
passed with stage
in 22 minutes and 37 seconds
Changes
3
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
1c9a6321
...
...
@@ -387,6 +387,7 @@ pim_target_precompile_headers(kmailpart PUBLIC ../kmail_pch.h)
target_link_libraries
(
kmailpart
kmailprivate
KF5::I18n
KF5::PimCommon
KF5::KCMUtils
KF5::Parts
...
...
src/kontactplugin/kmail/CMakeLists.txt
View file @
1c9a6321
...
...
@@ -18,7 +18,7 @@ add_library(kontact_kmailplugin MODULE ${kontact_kmailplugin_PART_SRCS})
pim_target_precompile_headers
(
kontact_kmailplugin PUBLIC ../../../kmail_pch.h
)
add_dependencies
(
kontact_kmailplugin kmail_xml
)
target_link_libraries
(
kontact_kmailplugin KF5::Mime KF5::KontactInterface KF5::CalendarCore KF5::CalendarUtils KF5::AkonadiCore KF5::Contacts KF5::AkonadiWidgets
)
target_link_libraries
(
kontact_kmailplugin KF5::Mime
KF5::I18n
KF5::KontactInterface KF5::CalendarCore KF5::CalendarUtils KF5::AkonadiCore KF5::Contacts KF5::AkonadiWidgets
)
########### next target ###############
...
...
src/kontactplugin/summary/CMakeLists.txt
View file @
1c9a6321
...
...
@@ -9,7 +9,7 @@ add_library(kontact_summaryplugin MODULE ${kontact_summaryplugin_PART_SRCS})
pim_target_precompile_headers
(
kontact_summaryplugin PUBLIC ../../../kmail_pch.h
)
add_dependencies
(
kontact_summaryplugin kmail_xml
)
target_link_libraries
(
kontact_summaryplugin KF5::KCMUtils KF5::IdentityManagement KF5::KontactInterface KF5::PimCommon KF5::ConfigCore
)
target_link_libraries
(
kontact_summaryplugin KF5::KCMUtils
KF5::I18n
KF5::IdentityManagement KF5::KontactInterface KF5::PimCommon KF5::ConfigCore
)
kcoreaddons_desktop_to_json
(
kontact_summaryplugin summaryplugin.desktop
)
...
...
@@ -20,7 +20,7 @@ set(kcm_kontactsummary_PART_SRCS kcmkontactsummary.cpp)
add_library
(
kcm_kontactsummary MODULE
${
kcm_kontactsummary_PART_SRCS
}
)
pim_target_precompile_headers
(
kcm_kontactsummary PUBLIC ../../../kmail_pch.h
)
target_link_libraries
(
kcm_kontactsummary KF5::KCMUtils Qt::Widgets KF5::KCMUtils KF5::I18n KF5::KontactInterface
)
target_link_libraries
(
kcm_kontactsummary
KF5::I18n
KF5::KCMUtils Qt::Widgets KF5::KCMUtils KF5::I18n KF5::KontactInterface
)
########### install files ###############
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment