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