From 6051eeefb5cfbe17afeeb16cd397d768f1ed78e0 Mon Sep 17 00:00:00 2001 From: Patricia Aas Date: Tue, 19 Mar 2024 21:56:25 +0100 Subject: [PATCH] Add libxcursor-dev to the dependencies for the cmake workflow aswell --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index d3c86ff..815faad 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -101,7 +101,7 @@ jobs: - name: Install Linux dependencies if: startsWith( matrix.configurations.os, 'ubuntu-' ) - run: sudo apt-get update && sudo apt-get install -y libx11-dev libxrandr-dev libxi-dev libgl1-mesa-dev libudev-dev clang-12 make ninja-build cmake autoconf libtool mesa-common-dev libglu1-mesa-dev libfreetype6-dev libopenal-dev libsndfile1-dev + run: sudo apt-get update && sudo apt-get install -y libx11-dev libxcursor-dev libxi-dev libxrandr-dev libgl1-mesa-dev libudev-dev clang-12 make ninja-build cmake autoconf libtool mesa-common-dev libglu1-mesa-dev libfreetype6-dev libopenal-dev libsndfile1-dev - name: Install Additional Linux dependencies if: matrix.configurations.config-preset == 'linux-gcc-11'