diff options
author | Vaxry <[email protected]> | 2024-04-20 13:25:29 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-20 13:25:29 +0100 |
commit | ea954494024cb596aaf9a40c77c3e0fcaf0e0322 (patch) | |
tree | 8c35d1e5265608c7c2ec4f88eba66a79709466d1 /.github/actions/setup_base/action.yml | |
parent | 5c97b96278da672405527b84019ab50395a9f74f (diff) | |
download | Hyprland-ea954494024cb596aaf9a40c77c3e0fcaf0e0322.tar.gz Hyprland-ea954494024cb596aaf9a40c77c3e0fcaf0e0322.zip |
core: Move tearing to hyprwayland-scanner (#5657)
Adds a new dependency: hyprwayland-scanner https://github.com/hyprwm/hyprwayland-scanner
---------
Co-authored-by: Mihai Fufezan <[email protected]>
Diffstat (limited to '.github/actions/setup_base/action.yml')
-rw-r--r-- | .github/actions/setup_base/action.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/actions/setup_base/action.yml b/.github/actions/setup_base/action.yml index 648253cc..5b952bec 100644 --- a/.github/actions/setup_base/action.yml +++ b/.github/actions/setup_base/action.yml @@ -25,6 +25,7 @@ runs: glslang \ go \ hyprlang \ + hyprcursor \ jq \ libc++ \ libdisplay-info \ @@ -44,6 +45,7 @@ runs: pango \ pixman \ pkgconf \ + pugixml \ scdoc \ seatd \ systemd \ @@ -58,11 +60,11 @@ runs: libzip \ librsvg - - name: Get hyprcursor-git + - name: Get hyprwayland-scanner-git shell: bash run: | - git clone https://github.com/hyprwm/hyprcursor --recursive - cd hyprcursor + git clone https://github.com/hyprwm/hyprwayland-scanner --recursive + cd hyprwayland-scanner cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` cmake --install build |