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 \
libglfw3-dev \
libx11-dev \
libxkbcommon-dev
libxkbcommon-dev \
python3-pil
- name: Build Game
run: |

View File

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