diff --git a/.gitea/workflows/build-linux-glfw-x64.yml b/.gitea/workflows/build-linux-glfw-x64.yml index 350c1647..ce60444d 100644 --- a/.gitea/workflows/build-linux-glfw-x64.yml +++ b/.gitea/workflows/build-linux-glfw-x64.yml @@ -19,7 +19,9 @@ jobs: libglu1-mesa-dev \ libglfw3-dev \ libx11-dev \ - libxkbcommon-dev + libxkbcommon-dev \ + python3-pil + - name: Build Game run: | diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index c1ddd3ba..1b63225e 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -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)