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
Plasma
Plasma Workspace
Commits
44a55fde
Commit
44a55fde
authored
Apr 05, 2021
by
Nicolas Fella
Browse files
Add some missing linkages
Currently things work due to transitiveness, but we better not rely on that
parent
04ad60d2
Changes
3
Hide whitespace changes
Inline
Side-by-side
kioslave/applications/CMakeLists.txt
View file @
44a55fde
...
...
@@ -3,7 +3,7 @@ add_definitions(-DTRANSLATION_DOMAIN=\"kio5_applications\")
add_library
(
kio_applications MODULE kio_applications.cpp
)
set_target_properties
(
kio_applications PROPERTIES OUTPUT_NAME
"applications"
)
target_link_libraries
(
kio_applications KF5::KIOCore KF5::I18n Qt::Network
)
target_link_libraries
(
kio_applications KF5::KIOCore KF5::I18n
KF5::Service
Qt::Network
)
install
(
TARGETS kio_applications DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/kf5/kio
)
install
(
FILES programs.protocol applications.protocol DESTINATION
${
KDE_INSTALL_KSERVICES5DIR
}
)
kioslave/desktop/CMakeLists.txt
View file @
44a55fde
...
...
@@ -14,7 +14,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
add_library
(
kio_desktop MODULE
${
kio_desktop_SRCS
}
)
target_link_libraries
(
kio_desktop Qt::DBus Qt::Gui KF5::KIOCore KF5::I18n Qt::Network
)
target_link_libraries
(
kio_desktop Qt::DBus Qt::Gui KF5::KIOCore KF5::I18n
KF5::ConfigCore
Qt::Network
)
set_target_properties
(
kio_desktop PROPERTIES OUTPUT_NAME
"desktop"
)
...
...
@@ -24,7 +24,7 @@ install(TARGETS kio_desktop DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf5/kio)
add_library
(
desktopnotifier MODULE desktopnotifier.cpp
)
kcoreaddons_desktop_to_json
(
desktopnotifier desktopnotifier.desktop
)
target_link_libraries
(
desktopnotifier KF5::KIOCore KF5::DBusAddons
)
target_link_libraries
(
desktopnotifier
KF5::ConfigCore
KF5::KIOCore KF5::DBusAddons
)
install
(
TARGETS desktopnotifier DESTINATION
${
KDE_INSTALL_PLUGINDIR
}
/kf5/kded
)
...
...
phonon/platform_kde/CMakeLists.txt
View file @
44a55fde
...
...
@@ -5,7 +5,7 @@ set(kde_PART_SRCS
)
add_library
(
kde MODULE
${
kde_PART_SRCS
}
)
target_link_libraries
(
kde
${
PHONON_LIBRARY
}
KF5::CoreAddons KF5::WidgetsAddons KF5::I18n KF5::KIOCore KF5::Notifications
)
target_link_libraries
(
kde
${
PHONON_LIBRARY
}
KF5::CoreAddons
KF5::ConfigCore
KF5::WidgetsAddons KF5::I18n KF5::KIOCore KF5::Notifications
)
kcoreaddons_desktop_to_json
(
kde phononbackend.desktop
)
...
...
Write
Preview
Supports
Markdown
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