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 89e376c commit 6290ebeCopy full SHA for 6290ebe
1 file changed
.github/workflows/builds.yml
@@ -40,7 +40,9 @@ jobs:
40
sudo apt-get install -y \
41
cmake ninja-build pkg-config \
42
protobuf-compiler libprotobuf-dev \
43
+ libsdl3-dev \
44
libssl-dev \
45
+ libspdlog-dev \
46
curl
47
48
- name: Install deps (macOS)
@@ -50,13 +52,16 @@ jobs:
50
52
set -eux
51
53
brew update
54
brew install cmake ninja protobuf
55
+ brew install spdlog
56
57
- name: Install deps (Windows)
58
if: runner.os == 'Windows'
59
shell: pwsh
60
run: |
61
choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System'
62
choco install -y ninja
63
+ choco install -y spdlog
64
+ choco install -y sdl3
65
66
- name: Setup MSVC (Windows)
67
0 commit comments