mirror of
https://github.com/theoleuthardt/DinoGame.git
synced 2026-06-13 01:17:56 +00:00
fix: dependencies for x11 support
This commit is contained in:
parent
cac123bb58
commit
ce05257cc1
1 changed files with 8 additions and 2 deletions
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
|
|
@ -25,11 +25,17 @@ jobs:
|
|||
|
||||
- name: Install Dependencies (Linux)
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt install -y cmake g++
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y cmake g++ xorg-dev libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev
|
||||
shell: bash
|
||||
|
||||
- name: Install Dependencies (macOS)
|
||||
if: runner.os == 'macOS'
|
||||
run: brew install cmake gcc
|
||||
run: |
|
||||
brew install cmake gcc
|
||||
brew install --cask xquartz
|
||||
shell: bash
|
||||
|
||||
- name: Install Dependencies (Windows)
|
||||
if: runner.os == 'Windows'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue