PIL
Some checks failed
build-linux-glfw-x64 / build (push) Failing after 3m24s

This commit is contained in:
2024-12-06 13:34:52 -06:00
parent 7c68b7bc8b
commit 4e0bb5caa9
2 changed files with 12 additions and 8 deletions

View File

@ -19,7 +19,9 @@ jobs:
libglu1-mesa-dev \ libglu1-mesa-dev \
libglfw3-dev \ libglfw3-dev \
libx11-dev \ libx11-dev \
libxkbcommon-dev libxkbcommon-dev \
python3-pil
- name: Build Game - name: Build Game
run: | run: |

View File

@ -43,13 +43,15 @@ FetchContent_Declare(
FetchContent_MakeAvailable(json) FetchContent_MakeAvailable(json)
# JOLT Physics # JOLT Physics
FetchContent_Declare( if(DAWN_ENABLE_PHYSICS)
JoltPhysics FetchContent_Declare(
GIT_REPOSITORY "https://github.com/jrouwe/JoltPhysics" JoltPhysics
GIT_TAG "v5.2.0" GIT_REPOSITORY "https://github.com/jrouwe/JoltPhysics"
SOURCE_SUBDIR "Build" GIT_TAG "v5.2.0"
) SOURCE_SUBDIR "Build"
FetchContent_MakeAvailable(JoltPhysics) )
FetchContent_MakeAvailable(JoltPhysics)
endif()
# OpenAL # OpenAL
# if(DAWN_TARGET_OPENAL) # if(DAWN_TARGET_OPENAL)