Skip to content

Commit

Permalink
Remove leftover GLEW dependency from GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MegAmi24 authored Dec 2, 2024
1 parent a2e0b5d commit d83967b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
submodules: recursive
- name: Install dependencies
run: vcpkg install glew sdl2 libogg libvorbis --triplet=x86-windows-static
run: vcpkg install sdl2 libogg libvorbis --triplet=x86-windows-static
- name: Build RSDKv2
run: |
cmake -B build ${{env.GENERAL_FLAGS}} ${{env.GENERAL_WIN_FLAGS}} ${{env.WIN32_FLAGS}}
Expand All @@ -44,7 +44,7 @@ jobs:
with:
submodules: recursive
- name: Install dependencies
run: vcpkg install glew sdl2 libogg libvorbis --triplet=x64-windows-static
run: vcpkg install sdl2 libogg libvorbis --triplet=x64-windows-static
- name: Build RSDKv2
run: |
cmake -B build ${{env.GENERAL_FLAGS}} ${{env.GENERAL_WIN_FLAGS}} ${{env.WIN64_FLAGS}}
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libglew-dev libglfw3-dev libsdl2-dev libogg-dev libvorbis-dev
sudo apt-get install libsdl2-dev libogg-dev libvorbis-dev
- name: Build RSDKv2
run: |
cmake -B build ${{env.GENERAL_FLAGS}} ${{env.GENERAL_LINUX_FLAGS}}
Expand Down

0 comments on commit d83967b

Please sign in to comment.