mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Show all headers in qtc6
This commit is contained in:
parent
45cdc532f3
commit
c79ca828f3
14 changed files with 37 additions and 37 deletions
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
add_library(ppc-mmqmlplugin)
|
||||
target_sources(ppc-mmqmlplugin PRIVATE
|
||||
mmqmlplugin.cpp
|
||||
signalindicator.cpp
|
||||
mmqmlplugin.cpp mmqmlplugin.h
|
||||
signalindicator.cpp signalindicator.h
|
||||
)
|
||||
|
||||
target_link_libraries(ppc-mmqmlplugin
|
||||
|
|
|
|||
|
|
@ -5,19 +5,19 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}/..)
|
|||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
||||
|
||||
set(mobileshellplugin_SRCS
|
||||
mobileshellplugin.cpp
|
||||
mobileshellsettings.cpp
|
||||
shellutil.cpp
|
||||
windowutil.cpp
|
||||
components/direction.cpp
|
||||
quicksettings/quicksetting.cpp
|
||||
quicksettings/paginatemodel.cpp
|
||||
mobileshellplugin.cpp mobileshellplugin.h
|
||||
mobileshellsettings.cpp mobileshellsettings.h
|
||||
shellutil.cpp shellutil.h
|
||||
windowutil.cpp windowutil.h
|
||||
components/direction.cpp components/direction.h
|
||||
quicksettings/quicksetting.cpp quicksettings/quicksetting.h
|
||||
quicksettings/paginatemodel.cpp quicksettings/paginatemodel.h
|
||||
quicksettings/quicksettingsmodel.cpp
|
||||
quicksettings/savedquicksettings.cpp
|
||||
quicksettings/savedquicksettingsmodel.cpp
|
||||
notifications/notificationthumbnailer.cpp
|
||||
notifications/notificationfilemenu.cpp
|
||||
taskswitcher/displaysmodel.cpp
|
||||
quicksettings/savedquicksettings.cpp quicksettings/savedquicksettings.h
|
||||
quicksettings/savedquicksettingsmodel.cpp quicksettings/savedquicksettingsmodel.h
|
||||
notifications/notificationthumbnailer.cpp notifications/notificationthumbnailer.h
|
||||
notifications/notificationfilemenu.cpp notifications/notificationfilemenu.h
|
||||
taskswitcher/displaysmodel.cpp taskswitcher/displaysmodel.h
|
||||
)
|
||||
if (QT_MAJOR_VERSION STREQUAL "5")
|
||||
if(QUICK_COMPILER)
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}/..)
|
|||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
||||
|
||||
set(mobileshellstateplugin_SRCS
|
||||
mobileshellstateplugin.cpp
|
||||
mobileshellstateplugin.cpp mobileshellstateplugin.h
|
||||
)
|
||||
if (QT_MAJOR_VERSION STREQUAL "5")
|
||||
if(QUICK_COMPILER)
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
set(homescreen_SRCS
|
||||
homescreen.cpp
|
||||
desktopmodel.cpp
|
||||
applicationlistmodel.cpp
|
||||
desktopmodel.cpp desktopmodel.h
|
||||
applicationlistmodel.cpp applicationlistmodel.h
|
||||
)
|
||||
|
||||
add_library(plasma_containment_phone_homescreen MODULE ${homescreen_SRCS})
|
||||
|
|
|
|||
|
|
@ -3,11 +3,11 @@
|
|||
|
||||
set(homescreen_SRCS
|
||||
homescreen.cpp
|
||||
application.cpp
|
||||
applicationfolder.cpp
|
||||
applicationlistmodel.cpp
|
||||
pinnedmodel.cpp
|
||||
windowlistener.cpp
|
||||
application.cpp application.h
|
||||
applicationfolder.cpp applicationfolder.h
|
||||
applicationlistmodel.cpp applicationlistmodel.h
|
||||
pinnedmodel.cpp pinnedmodel.h
|
||||
windowlistener.cpp windowlistener.h
|
||||
)
|
||||
|
||||
add_library(plasma_containment_phone_homescreen_halcyon MODULE ${homescreen_SRCS})
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
set(phonepanel_SRCS
|
||||
phonepanel.cpp
|
||||
phonepanel.cpp phonepanel.h
|
||||
)
|
||||
|
||||
add_library(plasma_applet_phonepanel MODULE ${phonepanel_SRCS})
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
qt_add_dbus_interfaces(DBUS_SRCS ${KWIN_VIRTUALKEYBOARD_INTERFACE})
|
||||
|
||||
add_library(plasma_containment_phone_taskpanel MODULE taskpanel.cpp ${DBUS_SRCS})
|
||||
add_library(plasma_containment_phone_taskpanel MODULE taskpanel.cpp taskpanel.h ${DBUS_SRCS})
|
||||
|
||||
target_link_libraries(plasma_containment_phone_taskpanel
|
||||
Qt::Gui
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
kcoreaddons_add_plugin(kcm_mobileshell SOURCES kcm.cpp INSTALL_NAMESPACE "plasma/kcms/systemsettings")
|
||||
kcoreaddons_add_plugin(kcm_mobileshell SOURCES kcm.cpp kcm.h INSTALL_NAMESPACE "plasma/kcms/systemsettings")
|
||||
|
||||
target_link_libraries(kcm_mobileshell
|
||||
Qt::Core
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
set(flashlightplugin_SRCS
|
||||
flashlightplugin.cpp
|
||||
flashlightutil.cpp
|
||||
flashlightplugin.cpp flashlightplugin.h
|
||||
flashlightutil.cpp flashlightutil.h
|
||||
${DBUS_SRCS}
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@ set_source_files_properties(${KWIN_COLORCORRECT_INTERFACE} PROPERTIES NO_NAMESPA
|
|||
qt_add_dbus_interfaces(DBUS_SRCS ${KWIN_COLORCORRECT_INTERFACE})
|
||||
|
||||
set(nightcolorplugin_SRCS
|
||||
nightcolorplugin.cpp
|
||||
nightcolorutil.cpp
|
||||
nightcolorplugin.cpp nightcolorplugin.h
|
||||
nightcolorutil.cpp nightcolorutil.h
|
||||
enum.h
|
||||
${DBUS_SRCS}
|
||||
)
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
set(powermenuplugin_SRCS
|
||||
powermenuplugin.cpp
|
||||
powermenuutil.cpp
|
||||
powermenuplugin.cpp powermenuplugin.h
|
||||
powermenuutil.cpp powermenuutil.h
|
||||
)
|
||||
|
||||
add_library(powermenuplugin ${powermenuplugin_SRCS})
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
set(recordplugin_SRCS
|
||||
recordplugin.cpp
|
||||
recordutil.cpp
|
||||
recordplugin.cpp recordplugin.h
|
||||
recordutil.cpp recordutil.h
|
||||
)
|
||||
|
||||
add_library(recordplugin ${recordplugin_SRCS})
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
qt_add_dbus_interfaces(DBUS_SRCS dbus/org.kde.KScreen.xml)
|
||||
|
||||
set(screenrotationplugin_SRCS
|
||||
screenrotationplugin.cpp
|
||||
screenrotationutil.cpp
|
||||
screenrotationplugin.cpp screenrotationplugin.h
|
||||
screenrotationutil.cpp screenrotationutil.h
|
||||
${DBUS_SRCS}
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
qt_add_dbus_interfaces(DBUS_SRCS dbus/org.kde.KWin.ScreenShot2.xml)
|
||||
|
||||
set(screenshotplugin_SRCS
|
||||
screenshotplugin.cpp
|
||||
screenshotutil.cpp
|
||||
screenshotplugin.cpp screenshotplugin.h
|
||||
screenshotutil.cpp screenshotutil.h
|
||||
${DBUS_SRCS}
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue