Install dependencies (Wayland, X11, Vulkan)

This commit is contained in:
Jiga228
2025-09-14 15:22:52 +07:00
parent efdc6b0d50
commit f4ecae3c5c
+3 -2
View File
@@ -23,12 +23,13 @@ jobs:
- name: Проверка содержимого glfw - name: Проверка содержимого glfw
run: ls -la glfw run: ls -la glfw
- name: Install Wayland and X11 dependencies - name: Install dependencies (Wayland, X11, Vulkan)
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get install -y \ sudo apt-get install -y \
wayland-protocols libwayland-dev libxkbcommon-dev \ wayland-protocols libwayland-dev libxkbcommon-dev \
libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev \
libvulkan-dev
- name: Configure CMake - name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}