mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-06-11 00:47:22 +00:00
Point the mobile shell, navigation, and Waydroid KCM metadata at the Shift repository. Brand the KDED startup and APN autodetect module names and descriptions as SHIFT while keeping existing plasma-mobile plugin/library identifiers stable. Add a guard for these metadata surfaces so upstream project URLs and translated Plasma Mobile overrides are not reintroduced.
42 lines
1.3 KiB
CMake
42 lines
1.3 KiB
CMake
# SPDX-FileCopyrightText: 2024 Devin Lin <devin@kde.org>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
add_subdirectory(notificationtest)
|
|
|
|
find_program(BASH_EXECUTABLE bash)
|
|
if(BASH_EXECUTABLE)
|
|
add_test(
|
|
NAME convergence-dock-invariant
|
|
COMMAND ${BASH_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check-convergence-dock-invariant.sh
|
|
)
|
|
|
|
add_test(
|
|
NAME shift-icon-theme-coverage
|
|
COMMAND ${BASH_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check-shift-icon-theme.sh
|
|
)
|
|
|
|
add_test(
|
|
NAME shift-product-metadata
|
|
COMMAND ${BASH_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check-shift-product-metadata.sh
|
|
)
|
|
|
|
add_test(
|
|
NAME shift-initialstart-metadata
|
|
COMMAND ${BASH_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check-shift-initialstart-metadata.sh
|
|
)
|
|
|
|
add_test(
|
|
NAME shift-quicksettings-metadata
|
|
COMMAND ${BASH_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check-shift-quicksettings-metadata.sh
|
|
)
|
|
|
|
add_test(
|
|
NAME shift-containment-metadata
|
|
COMMAND ${BASH_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check-shift-containment-metadata.sh
|
|
)
|
|
|
|
add_test(
|
|
NAME shift-settings-daemon-metadata
|
|
COMMAND ${BASH_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/check-shift-settings-daemon-metadata.sh
|
|
)
|
|
endif()
|