ci/readme: remove glfw and vulkan-dev dependency

This commit is contained in:
DH 2025-10-04 14:54:14 +03:00
parent 2f70a5b6dd
commit 3e694d6bab
2 changed files with 4 additions and 5 deletions

6
.github/BUILDING.md vendored
View file

@ -3,19 +3,19 @@
### The dependencies for Debian-like distributions. ### The dependencies for Debian-like distributions.
``` ```
sudo apt install build-essential cmake libunwind-dev libglfw3-dev libvulkan-dev libsox-dev git libasound2-dev nasm g++-14 sudo apt install build-essential cmake libunwind-dev libsox-dev git libasound2-dev nasm g++-14
``` ```
### The dependencies for Fedora distributions: ### The dependencies for Fedora distributions:
``` ```
sudo dnf install cmake libunwind-devel glfw-devel vulkan-devel gcc-c++ gcc sox-devel alsa-lib-devel nasm sudo dnf install cmake libunwind-devel gcc-c++ gcc sox-devel alsa-lib-devel nasm
``` ```
### The dependencies for Arch distributions: ### The dependencies for Arch distributions:
``` ```
sudo pacman -S libunwind glfw-x11 vulkan-devel sox git cmake alsa-lib nasm sudo pacman -S libunwind sox git cmake alsa-lib nasm
``` ```
## Cloning the Repo ## Cloning the Repo

View file

@ -23,8 +23,7 @@ jobs:
run: | run: |
sudo apt update sudo apt update
sudo apt install -y cmake build-essential libunwind-dev \ sudo apt install -y cmake build-essential libunwind-dev \
libvulkan-dev vulkan-validationlayers \ libsox-dev g++-14 ninja-build libasound2-dev nasm libudev-dev
libsox-dev g++-14 ninja-build libasound2-dev libglfw3-dev nasm libudev-dev
cmake -B build -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++-14 -DCMAKE_INSTALL_PREFIX=/usr cmake -B build -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++-14 -DCMAKE_INSTALL_PREFIX=/usr
cmake --build build -j$(($(nproc) + 2)) cmake --build build -j$(($(nproc) + 2))
sudo cmake --build build sudo cmake --build build