We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f24008 commit 9f56b80Copy full SHA for 9f56b80
.github/workflows/build.yml
@@ -63,11 +63,20 @@ jobs:
63
if: runner.os == 'Linux'
64
run: |
65
sudo apt update
66
- sudo apt install -y libsdl2-2.0-0 libsdl2-image-2.0-0 libsdl2-image-dev
+ sudo apt install -y libsdl2-2.0-0 libsdl2-image-2.0-0 libsdl2-image-dev libgl1-mesa-dev
67
68
- name: Install dependencies on macOS
69
if: runner.os == 'macOS'
70
71
+ mkdir -p /opt/mports
72
+ cd /opt/mports
73
+ git clone https://github.com/macports/macports-base.git
74
+ cd macports-base
75
+ cd /opt/mports/macports-base
76
+ ./configure --enable-readline
77
+ make
78
+ sudo make install
79
+ make distclean
80
sudo port install libsdl2 libsdl2_image +universal
81
82
- name: Configure CMake
0 commit comments