SDL_image: ci: clean up CMake arguments of -verify steps

From 5b148e27b0db9c7892a6d0a1ff6632766b3644ea Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Fri, 6 Dec 2024 22:57:48 +0100
Subject: [PATCH] ci: clean up CMake arguments of -verify steps

---
 .github/workflows/release.yml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 535c4efe..9c412bb4 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -117,8 +117,8 @@ jobs:
           cmake \
             -S ${{ steps.tar.outputs.path }} \
             -B /tmp/build \
-            -DSDL3IMAGE_SAMPLES=ON \
-            -DSDL3IMAGE_TESTS=ON \
+            -DSDLIMAGE_SAMPLES=ON \
+            -DSDLIMAGE_TESTS=ON \
             -DCMAKE_PREFIX_PATH="${{ steps.deps-build.outputs.path }}"
           cmake --build /tmp/build --verbose
           # ctest --test-dir /tmp/build --no-tests=error --output-on-failure
@@ -251,7 +251,6 @@ jobs:
         run: |
           set -e
           cmake -S "${{ steps.src.outputs.path }}/cmake/test"               \
-              -DTEST_SHARED=TRUE                                            \
               -DTEST_SHARED=TRUE                                            \
               -DTEST_STATIC=FALSE                                           \
               -DCMAKE_PREFIX_PATH="${{ steps.mount.outputs.mount-point }};${{ steps.deps-mount.outputs.path }}" \
@@ -727,7 +726,6 @@ jobs:
               -DCMAKE_PREFIX_PATH="/tmp/deps-android" \
               -DCMAKE_TOOLCHAIN_FILE=${ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake \
               -DANDROID_ABI=${android_abi} \
-              -Werror=dev \
               -DCMAKE_BUILD_TYPE=Release \
               -B "${android_abi}"
             echo "Building ${android_abi}..."