Skip to content

Commit e4ca5ad

Browse files
Fix sdl3 build
1 parent edd4777 commit e4ca5ad

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

11/noble/Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,16 @@ RUN apt-get update \
1616
libtbb-dev \
1717
libopenal-dev \
1818
libpng-dev \
19-
libsdl3-dev \
2019
ninja-build \
2120
pkg-config \
2221
&& update-ca-certificates \
2322
&& rm -rf /var/lib/apt/lists/*
23+
RUN git clone --depth=1 https://github.com/libsdl-org/SDL.git \
24+
&& git checkout a962f40bbba175e9716557a25d5d7965f134a3d3 \
25+
&& cd SDL \
26+
&& mkdir build \
27+
&& cd build \
28+
&& cmake .. \
29+
&& cmake --build . \
30+
&& cmake --install .
31+

0 commit comments

Comments
 (0)