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
KOrganizer
Commits
dbbfda88
Commit
dbbfda88
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
a6ac42b7
Pipeline
#59905
passed with stage
in 12 minutes and 34 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
dbbfda88
...
...
@@ -81,6 +81,7 @@ find_package(KF5AkonadiSearch ${AKONADI_SEARCH_VERSION} CONFIG REQUIRED)
set_package_properties
(
KF5AkonadiSearch PROPERTIES DESCRIPTION
"The Akonadi Search libraries"
URL
"https://www.kde.org"
TYPE REQUIRED PURPOSE
"Provides search capabilities in KMail and Akonadi"
)
# Find KF5 package
find_package
(
KF5I18n
${
KF5_MIN_VERSION
}
CONFIG REQUIRED
)
find_package
(
KF5Codecs
${
KF5_MIN_VERSION
}
CONFIG REQUIRED
)
find_package
(
KF5Config
${
KF5_MIN_VERSION
}
CONFIG REQUIRED
)
find_package
(
KF5ConfigWidgets
${
KF5_MIN_VERSION
}
CONFIG REQUIRED
)
...
...
src/kontactplugin/korganizer/CMakeLists.txt
View file @
dbbfda88
...
...
@@ -37,7 +37,7 @@ qt5_add_dbus_interfaces(kontact_journalplugin_PART_SRCS ${korganizer_SOURCE_DIR}
add_library
(
kontact_journalplugin MODULE
${
kontact_journalplugin_PART_SRCS
}
)
target_link_libraries
(
kontact_journalplugin KF5::KontactInterface KF5::WindowSystem
)
target_link_libraries
(
kontact_journalplugin
KF5::I18n
KF5::KontactInterface KF5::WindowSystem
)
kcoreaddons_desktop_to_json
(
kontact_journalplugin journalplugin.desktop
)
...
...
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