mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Wipe a partially entered password, and the open state of the lockscreen when the screen is off. Addresses https://invent.kde.org/plasma/plasma-mobile/-/issues/110
16 lines
407 B
CMake
16 lines
407 B
CMake
# SPDX-FileCopyrightText: 2024 Devin Lin <devin@kde.org>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
ecm_add_qml_module(dpmsplugin URI org.kde.plasma.private.mobileshell.dpmsplugin GENERATE_PLUGIN_SOURCE)
|
|
|
|
target_sources(dpmsplugin PRIVATE dpmsutil.cpp)
|
|
|
|
target_link_libraries(dpmsplugin PRIVATE
|
|
Qt::Qml
|
|
Qt::DBus
|
|
Qt::Gui
|
|
Qt::Quick
|
|
KF6::ScreenDpms
|
|
)
|
|
|
|
ecm_finalize_qml_module(dpmsplugin)
|