From 355988680be563339c5344d4b33a3b70f95221ee Mon Sep 17 00:00:00 2001 From: Paul Baksic Date: Thu, 18 Dec 2025 15:24:51 +0100 Subject: [PATCH] Add spdlog for ubuntu and macos --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index aa0fd52..953d15d 100644 --- a/action.yml +++ b/action.yml @@ -207,12 +207,12 @@ runs: if [[ "$RUNNER_OS" == "Linux" ]]; then sudo apt-get update sudo apt-get -qq install ccache ninja-build - sudo apt-get -qq install freeglut3-dev libopengl0 + sudo apt-get -qq install freeglut3-dev libopengl0 libspdlog-dev sudo apt-get -qq install libpng-dev libjpeg-dev libtiff-dev libglew-dev zlib1g-dev elif [[ "$RUNNER_OS" == "macOS" ]]; then brew update brew install ccache ninja - brew install glew + brew install glew spdlog elif [[ "$RUNNER_OS" == "Windows" ]]; then cmd //c 'choco install -y --no-progress nsis curl ninja' fi