shithub: choc

Download patch

ref: 6e2e50007181ef3cbd332fbffbb95993c0b3b58c
parent: 36c922d2f0bfb4bd3548589aca8d6e955ba00cc9
author: Turo Lamminen <turol@iki.fi>
date: Wed Jun 8 14:02:59 EDT 2022

Install dependencies to make cmake happy

--- a/.github/workflows/cpp-linter.yml
+++ b/.github/workflows/cpp-linter.yml
@@ -15,6 +15,8 @@
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3
+      - name: Install dependencies
+        run: sudo apt-get update && sudo apt-get install libpng-dev libsamplerate0-dev libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev ninja-build
       - name: Run cmake to generate compilation database
         run: cmake -S . -B . -G Ninja -DCMAKE_EXPORT_COMPILE_COMMANDS=1
       - uses: cpp-linter/cpp-linter-action@v1