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,17 @@
cmake_minimum_required(VERSION 3.5)
cmake_policy(SET CMP0048 OLD)
project(old_soversion)
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../modules)
include(ECMSetupVersion)
ecm_setup_version(2.3.4
VARIABLE_PREFIX Foo
SOVERSION 1
)
include(../version_helpers.cmake)
standard_version_var_checks(Foo 2.3.4 1)
add_executable(dummy main.c)
@@ -0,0 +1,4 @@
int main()
{
return 0;
}