Skip to content
GitLab
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
111200bf
Commit
111200bf
authored
Mar 13, 2022
by
Laurent Montel
Browse files
Fix show headers in qtc6
parent
2a0dfe22
Changes
15
Hide whitespace changes
Inline
Side-by-side
applets/calendar/CMakeLists.txt
View file @
111200bf
kcoreaddons_add_plugin
(
plasma_applet_calendar SOURCES calendarapplet.cpp INSTALL_NAMESPACE
"plasma/applets"
)
kcoreaddons_add_plugin
(
plasma_applet_calendar SOURCES calendarapplet.cpp
calendarapplet.h
INSTALL_NAMESPACE
"plasma/applets"
)
target_link_libraries
(
plasma_applet_calendar
KF5::Plasma
)
...
...
applets/digital-clock/plugin/CMakeLists.txt
View file @
111200bf
...
...
@@ -13,6 +13,11 @@ set(digitalclockplugin_SRCS
digitalclockplugin.cpp
clipboardmenu.cpp
applicationintegration.cpp
timezonemodel.h
timezonesi18n.h
digitalclockplugin.h
clipboardmenu.h
applicationintegration.h
)
add_library
(
digitalclockplugin SHARED
${
digitalclockplugin_SRCS
}
)
...
...
applets/icon/CMakeLists.txt
View file @
111200bf
add_definitions
(
-DTRANSLATION_DOMAIN=\"plasma_applet_org.kde.plasma.icon\"
)
kcoreaddons_add_plugin
(
plasma_applet_icon SOURCES iconapplet.cpp INSTALL_NAMESPACE
"plasma/applets"
)
kcoreaddons_add_plugin
(
plasma_applet_icon SOURCES iconapplet.cpp
iconapplet.h
INSTALL_NAMESPACE
"plasma/applets"
)
target_link_libraries
(
plasma_applet_icon
KF5::I18n
...
...
applets/notifications/CMakeLists.txt
View file @
111200bf
...
...
@@ -9,6 +9,14 @@ set(notificationapplet_SRCS
jobaggregator.cpp
texteditclickhandler.cpp
thumbnailer.cpp
notificationapplet.h
draghelper.h
fileinfo.h
filemenu.h
globalshortcuts.h
jobaggregator.h
texteditclickhandler.h
thumbnailer.h
)
kcoreaddons_add_plugin
(
plasma_applet_notifications SOURCES
${
notificationapplet_SRCS
}
INSTALL_NAMESPACE
"plasma/applets"
)
...
...
applets/panelspacer/plugin/CMakeLists.txt
View file @
111200bf
...
...
@@ -2,6 +2,6 @@ kde_enable_exceptions()
add_definitions
(
-DTRANSLATION_DOMAIN=\"panelspacer\"
)
kcoreaddons_add_plugin
(
org.kde.plasma.panelspacer SOURCES panelspacer.cpp INSTALL_NAMESPACE
"plasma/applets"
)
kcoreaddons_add_plugin
(
org.kde.plasma.panelspacer SOURCES panelspacer.cpp
panelspacer.h
INSTALL_NAMESPACE
"plasma/applets"
)
target_link_libraries
(
org.kde.plasma.panelspacer Qt::Gui Qt::Core Qt::Qml Qt::Quick KF5::Plasma KF5::PlasmaQuick KF5::I18n
)
applets/systemmonitor/systemmonitor/CMakeLists.txt
View file @
111200bf
kcoreaddons_add_plugin
(
plasma_applet_systemmonitor SOURCES systemmonitor.cpp INSTALL_NAMESPACE
"plasma/applets"
)
kcoreaddons_add_plugin
(
plasma_applet_systemmonitor SOURCES systemmonitor.cpp
systemmonitor.h
INSTALL_NAMESPACE
"plasma/applets"
)
target_link_libraries
(
plasma_applet_systemmonitor
Qt::Gui
...
...
containmentactions/contextmenu/CMakeLists.txt
View file @
111200bf
...
...
@@ -4,6 +4,7 @@ include_directories(${plasma-workspace_SOURCE_DIR}/libkworkspace)
set
(
contextmenu_SRCS
menu.cpp
menu.h
)
set
(
krunner_xml
${
plasma-workspace_SOURCE_DIR
}
/krunner/dbus/org.kde.krunner.App.xml
)
...
...
containmentactions/switchactivity/CMakeLists.txt
View file @
111200bf
kcoreaddons_add_plugin
(
plasma_containmentactions_switchactivity SOURCES switch.cpp INSTALL_NAMESPACE
"plasma/containmentactions"
)
kcoreaddons_add_plugin
(
plasma_containmentactions_switchactivity SOURCES switch.cpp
switch.h
INSTALL_NAMESPACE
"plasma/containmentactions"
)
target_link_libraries
(
plasma_containmentactions_switchactivity
Qt::Widgets
...
...
containmentactions/switchdesktop/CMakeLists.txt
View file @
111200bf
kcoreaddons_add_plugin
(
plasma_containmentactions_switchdesktop SOURCES desktop.cpp INSTALL_NAMESPACE
"plasma/containmentactions"
)
kcoreaddons_add_plugin
(
plasma_containmentactions_switchdesktop SOURCES desktop.cpp
desktop.h
INSTALL_NAMESPACE
"plasma/containmentactions"
)
target_link_libraries
(
plasma_containmentactions_switchdesktop
Qt::Widgets
...
...
containmentactions/switchwindow/CMakeLists.txt
View file @
111200bf
...
...
@@ -2,6 +2,7 @@ add_definitions(-DTRANSLATION_DOMAIN=\"plasma_containmentactions_switchwindow\")
set
(
switchwindow_SRCS
switch.cpp
switch.h
)
ki18n_wrap_ui
(
switchwindow_SRCS config.ui
)
...
...
dataengines/apps/CMakeLists.txt
View file @
111200bf
...
...
@@ -3,6 +3,10 @@ set(apps_engine_SRCS
appsource.cpp
appservice.cpp
appjob.cpp
appsengine.h
appsource.h
appservice.h
appjob.h
)
add_library
(
plasma_engine_apps MODULE
${
apps_engine_SRCS
}
)
...
...
kcms/desktoptheme/CMakeLists.txt
View file @
111200bf
...
...
@@ -5,6 +5,9 @@ set(kcm_desktoptheme_SRCS
kcm.cpp
themesmodel.cpp
filterproxymodel.cpp
kcm.h
themesmodel.h
filterproxymodel.h
)
kcmutils_generate_module_data
(
...
...
kcms/style/CMakeLists.txt
View file @
111200bf
...
...
@@ -12,6 +12,13 @@ set(kcm_style_PART_SRCS
gtkpage.cpp
previewitem.cpp
styledata.cpp
styleconfdialog.h
kcmstyle.h
stylesmodel.h
gtkthemesmodel.h
gtkpage.h
previewitem.h
styledata.h
)
qt_add_dbus_interface
(
kcm_style_PART_SRCS
${
KDED_DBUS_INTERFACE
}
kded_interface
)
qt_add_dbus_interface
(
kcm_style_PART_SRCS org.kde.GtkConfig.xml kdegtkconfig_interface
)
...
...
kcms/users/src/CMakeLists.txt
View file @
111200bf
...
...
@@ -4,6 +4,11 @@ set(kcm_users_SRCS
usermodel.cpp
fprintdevice.cpp
fingerprintmodel.cpp
kcm.h
user.h
usermodel.h
fprintdevice.h
fingerprintmodel.h
)
set_source_files_properties
(
org.freedesktop.Accounts.xml
...
...
plasma-windowed/CMakeLists.txt
View file @
111200bf
...
...
@@ -4,6 +4,8 @@ add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
set
(
plasmawindowed-app_SRCS
plasmawindowedcorona.cpp
plasmawindowedview.cpp
plasmawindowedcorona.h
plasmawindowedview.h
main.cpp
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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