We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f53e8e5 commit 1fe4a3eCopy full SHA for 1fe4a3e
.github/workflows/build.yml
@@ -249,6 +249,16 @@ jobs:
249
tar xvfz cmake-3.31.10-linux-x86_64.tar.gz
250
cp -r cmake-3.31.10-linux-x86_64/* /usr/
251
252
+ - name: Build SDL
253
+ run: |
254
+ wget https://github.com/libsdl-org/SDL/releases/download/release-3.2.28/SDL3-3.2.28.tar.gz
255
+ tar xvfz SDL3-3.2.28.tar.gz
256
+ mkdir build
257
+ cd build
258
+ cmake ../SDL3-3.2.28 -DSDL_SHARED=OFF -DSDL_STATIC=ON -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_BUILD_TYPE=Release -DSDL_VULKAN=OFF -DSDL_CAMERA=OFF -DSDL_GPU=OFF
259
+ cmake --build . --config Release
260
+ cmake --install .
261
+
262
- uses: actions/checkout@v2
263
with:
264
submodules: recursive
0 commit comments