Advance Wayland and KDE package bring-up

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-04-14 10:51:06 +01:00
parent 51f3c21121
commit cf12defd28
15214 changed files with 20594243 additions and 269 deletions
@@ -0,0 +1,34 @@
find_package(Qt6 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Test)
include(ECMAddTests)
macro(KICONTHEMES_TESTS)
foreach(_testname ${ARGN})
set(_srcs ${_testname}.cpp)
qt_add_resources(_srcs resources.qrc)
ecm_add_test(${_srcs} TEST_NAME ${_testname} LINK_LIBRARIES Qt6::Test KF6::IconThemes KF6::WidgetsAddons KF6::ConfigCore KF6::IconWidgets)
endforeach(_testname)
endmacro()
kiconthemes_tests(
kiconloader_unittest
kiconloader_resourcethemetest
kicontheme_unittest
kiconengine_unittest
kiconengine_scaled_unittest
kicondialog_unittest
kpixmapsequenceloadertest
)
find_package(Qt6 COMPONENTS Quick)
if (TARGET Qt6::Quick)
kiconthemes_tests(kquickiconprovidertest)
target_link_libraries(kquickiconprovidertest Qt6::Quick)
endif()
set_tests_properties(kiconloader_unittest PROPERTIES RUN_SERIAL TRUE)
# Benchmark, compiled, but not run automatically with ctest
add_executable(kiconloader_benchmark kiconloader_benchmark.cpp)
target_link_libraries(kiconloader_benchmark Qt6::Test KF6::IconThemes KF6::WidgetsAddons KF6::ConfigCore)