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,20 @@
set(EXPECTED "@CMAKE_CURRENT_SOURCE_DIR@/expected")
set(ACTUAL "@CMAKE_INSTALL_PREFIX@")
# Compares files in two directories, emits a fatal error if the top level files are different
# Takes a directory of expected files, and a directory of output files
function(compare_dirs expected output )
file(GLOB files "${expected}/*")
foreach(file ${files})
get_filename_component(name ${file} NAME)
execute_process(COMMAND ${CMAKE_COMMAND} -E compare_files ${file} "${output}/${name}"
RESULT_VARIABLE test_result
)
If (NOT test_result EQUAL 0)
message(FATAL_ERROR "Test failed: ${file} doesn't match ${output}/${name}!")
endif()
endforeach()
endfunction()
compare_dirs(${EXPECTED} ${ACTUAL}/test )