Add GLM headers to build action

This commit is contained in:
Michael Bradley 2025-02-23 12:43:24 -05:00
parent 4f4266327f
commit 0d79d17738
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -13,11 +13,11 @@ jobs:
- name: Install the toolchain - name: Install the toolchain
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get -y install cmake sudo apt-get -y install cmake libglm-dev
- name: Set up the build environment - name: Set up the build environment
run: cmake . run: cmake -S . -B cmake-build-debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- name: Compile the code - name: Compile the code
run: cmake --build . run: cmake --build cmake-build-debug
- name: Save executable - name: Save executable
uses: forgejo/upload-artifact@v4 uses: forgejo/upload-artifact@v4
with: with: