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
KAddressBook
Commits
63f06a01
Commit
63f06a01
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
56f324ce
Pipeline
#59904
passed with stage
in 5 minutes and 22 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
kontactplugin/CMakeLists.txt
View file @
63f06a01
...
...
@@ -14,6 +14,7 @@ qt5_add_dbus_interfaces(kontact_kaddressbookplugin_PART_SRCS ../src/org.kde.kadd
add_library
(
kontact_kaddressbookplugin MODULE
${
kontact_kaddressbookplugin_PART_SRCS
}
)
target_link_libraries
(
kontact_kaddressbookplugin
KF5::I18n
KF5::KontactInterface
)
kcoreaddons_desktop_to_json
(
kontact_kaddressbookplugin kaddressbookplugin.desktop
)
...
...
src/CMakeLists.txt
View file @
63f06a01
...
...
@@ -130,6 +130,7 @@ if (COMPILE_WITH_UNITY_CMAKE_SUPPORT)
endif
()
target_link_libraries
(
kaddressbook
KF5::I18n
KF5::KontactInterface
kaddressbookprivate
KF5::Crash
...
...
@@ -146,7 +147,7 @@ install(FILES data/org.kde.kaddressbook.appdata.xml DESTINATION ${KDE_INSTALL_ME
set
(
kaddressbook_PART_SRCS kaddressbookpart.cpp kaddressbook_debug.cpp kaddressbook.qrc
)
add_library
(
kaddressbookpart MODULE
${
kaddressbook_PART_SRCS
}
)
target_link_libraries
(
kaddressbookpart kaddressbookprivate KF5::Parts
)
target_link_libraries
(
kaddressbookpart kaddressbookprivate
KF5::I18n
KF5::Parts
)
install
(
TARGETS kaddressbookpart DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
)
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