Skip to content

Commit

Permalink
Add opengl dependency intall on linux, add submodule pulls
Browse files Browse the repository at this point in the history
  • Loading branch information
Organic-Code committed Oct 10, 2023
1 parent d0d8c69 commit 7070727
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install xorg-dev libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libdrm-dev libgbm-dev xvfb fluxbox
sudo apt-get install xorg-dev libxrandr-dev libxcursor-dev libudev-dev libopenal-dev libflac-dev libvorbis-dev libgl1-mesa-dev libegl1-mesa-dev libdrm-dev libgbm-dev xvfb fluxbox libopengl-dev
# SFML assumes the libraries are in "${PROJECT_SOURCE_DIR}/extlibs"
# https://github.com/SFML/SFML/blob/67c9019edad10bc57e2204f75ebf96a1f1ca743a/src/SFML/Audio/CMakeLists.txt#L60-L68
Expand All @@ -69,6 +69,10 @@ jobs:
New-Item -Type Directory extlibs
Copy-Item -Recurse "${{ github.workspace }}/external/SFML/extlibs/libs-msvc-universal" "${{ github.workspace }}/extlibs/"
- name: Git Sumbodule Update
run: |
git pull --recurse-submodules
- name: Configure CMake
run: |
mkdir build
Expand Down

0 comments on commit 7070727

Please sign in to comment.