# treeland **Repository Path**: GXDE-OS/treeland ## Basic Information - **Project Name**: treeland - **Description**: treeland is a wayland compositor based on wlroots and QtQuick, designed to provide efficient and flexible graphical interface support - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-01-17 - **Last Updated**: 2026-07-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Treeland treeland is a wayland compositor based on wlroots and QtQuick, designed to provide efficient and flexible graphical interface support. ## Dependencies Check the `debian/control` file to understand specific build and runtime dependencies, or use `cmake` to check for missing necessary components. Core build dependencies: - [waylib](https://github.com/vioken/waylib): A Wayland compositor development library based on wlroots and QtQuick - Qt >= 6.8.0 - wlroots = 0.19 - [treeland-protocols](https://github.com/linuxdeepin/treeland-protocols): Private Wayland protocols used by treeland Recommended runtime dependencies: - [ddm](https://github.com/linuxdeepin/ddm): A display manager optimized for multiple users ## Building Treeland uses cmake for building. The WITH_SUBMODULE_WAYLIB option can force the use of the waylib code from the submodule. If you want to use the system-provided waylib, set this option to OFF. Using the system-provided waylib: ```shell $ git clone git@github.com:linuxdeepin/treeland.git $ cd treeland $ cmake -Bbuild -DWITH_SUBMODULE_WAYLIB=OFF $ cmake --build build ``` Using the waylib from the submodule: ```shell $ git clone git@github.com:linuxdeepin/treeland.git --recursive $ cd treeland $ cmake -Bbuild -DWITH_SUBMODULE_WAYLIB=ON $ cmake --build build ``` ## Packaging A `debian` folder is provided to build the package under the *deepin* linux desktop distribution. To build the package, use the following command: ```shell $ sudo apt build-dep . # install build dependencies $ dpkg-buildpackage -uc -us -nc -b # build binary package(s) ``` ## GitHub Actions / CI This project uses GitHub Actions for continuous integration. The following workflows are configured: - **qwlroots builds**: Triggered when `qwlroots/**` files are modified - **waylib builds**: Triggered when `waylib/**` or `qwlroots/**` files are modified (since waylib depends on qwlroots) - **treeland builds**: Main project builds The waylib workflows are configured to also trigger when qwlroots code changes, ensuring that waylib builds remain compatible with qwlroots modifications. ## Getting Involved - [Code contribution via GitHub](https://github.com/linuxdeepin/treeland/) - [Submit bug or suggestions to GitHub Issues or GitHub Discussions](https://github.com/linuxdeepin/developer-center/issues/new/choose) ## License treeland is licensed under Apache-2.0 OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only.