mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 06:13:09 +00:00
Add PLASMA_MOBILE_LOCAL_KAUTH_INSTALL CMake option to redirect KAuth helper executables, D-Bus service files, and polkit policy files into CMAKE_INSTALL_PREFIX instead of hardcoded /usr paths. Guard KF6Auth find_package calls in helper subdirectories with if(NOT TARGET KF6::AuthCore) to avoid re-running find_package after the top-level override, which would revert generated service Exec paths back to /usr/libexec/kf6/kauth.
30 lines
972 B
CMake
30 lines
972 B
CMake
# SPDX-FileCopyrightText: 2025 Florian RICHER <florian.richer@protonmail.com>
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
add_executable(flashlighthelper)
|
|
target_sources(flashlighthelper PRIVATE flashlighthelper.cpp)
|
|
|
|
target_link_libraries(flashlighthelper
|
|
Qt6::Core
|
|
KF6::AuthCore
|
|
KF6::CoreAddons
|
|
udev
|
|
)
|
|
|
|
install(TARGETS flashlighthelper DESTINATION ${KAUTH_HELPER_INSTALL_DIR})
|
|
|
|
if(NOT TARGET KF6::AuthCore)
|
|
find_package(KF6Auth NO_MODULE REQUIRED)
|
|
endif()
|
|
|
|
kauth_install_helper_files(flashlighthelper org.kde.plasma.mobileshell.flashlighthelper root)
|
|
kauth_install_actions(org.kde.plasma.mobileshell.flashlighthelper flashlighthelper.actions)
|
|
|
|
ecm_qt_declare_logging_category(flashlighthelper
|
|
HEADER flashlighthelper_debug.h
|
|
IDENTIFIER FLASHLIGHTHELPER
|
|
DEFAULT_SEVERITY Warning
|
|
CATEGORY_NAME org.kde.plasma.mobileshell.flashlighthelper
|
|
DESCRIPTION "Helper for Flashlight for some actions need root access"
|
|
EXPORT PLASMA_MOBILE
|
|
)
|