2026-04-20 07:43:11 +00:00
|
|
|
# SPDX-FileCopyrightText: 2026 Marco Allegretti
|
|
|
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
|
|
2026-04-21 07:08:03 +00:00
|
|
|
find_package(Qt6 REQUIRED COMPONENTS Sql DBus)
|
2026-04-20 07:43:11 +00:00
|
|
|
|
|
|
|
|
ecm_add_qml_module(gamingshellplugin URI org.kde.plasma.private.mobileshell.gamingshellplugin GENERATE_PLUGIN_SOURCE)
|
|
|
|
|
|
|
|
|
|
target_sources(gamingshellplugin PRIVATE
|
|
|
|
|
gamepadmanager.cpp
|
|
|
|
|
gamepaddevice.cpp
|
|
|
|
|
gamelauncherprovider.cpp
|
2026-04-21 07:08:03 +00:00
|
|
|
powerprofilecontrol.cpp
|
|
|
|
|
gamemodecontrol.cpp
|
2026-04-20 07:43:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_link_libraries(gamingshellplugin PRIVATE
|
|
|
|
|
Qt::Core
|
2026-04-21 07:08:03 +00:00
|
|
|
Qt::DBus
|
2026-04-20 07:43:11 +00:00
|
|
|
Qt::Qml
|
|
|
|
|
Qt::Quick
|
2026-04-20 12:09:33 +00:00
|
|
|
Qt::Sql
|
2026-04-20 07:43:11 +00:00
|
|
|
KF6::I18n
|
2026-04-20 12:09:33 +00:00
|
|
|
KF6::KIOGui
|
2026-04-20 07:43:11 +00:00
|
|
|
KF6::Service
|
|
|
|
|
KF6::CoreAddons
|
2026-04-20 08:03:41 +00:00
|
|
|
KF6::ConfigCore
|
2026-04-20 07:43:11 +00:00
|
|
|
SDL3::SDL3
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
ecm_finalize_qml_module(gamingshellplugin)
|