From dd9916a8f887d8f8ec1d867e7d7d431fda5dbc94 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Fri, 20 Sep 2024 19:05:34 +0100 Subject: [PATCH] sdl dl --- .github/workflows/build.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4887760..44f03a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -234,11 +234,21 @@ jobs: # The target architecture (x86, x64) of the Python interpreter. architecture: x64 + - name: Build SDL + run: | + wget https://github.com/libsdl-org/SDL/archive/refs/tags/release-2.30.7.tar.gz + tar xvfz release-2.30.7.tar.gz + mkdir build + cd build + cmake ../SDL-release-2.30.7 + cmake --build . + cmake --install . + # Runs a set of commands using the runners shell - name: Build raylib run: | sudo apt update - sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev libsdl2-dev + sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev cd raylib-c mkdir build cd build