From ff9599fb7e6f72b635c27715b407797953050e1c Mon Sep 17 00:00:00 2001 From: nmlgc Date: Thu, 2 Oct 2025 23:42:36 +0200 Subject: [PATCH] build: Fix typo in SDL_uclibc target name for 32-bit Windows (cherry picked from commit 7916af9910e5d183f786b348b00e70a0e740b0ec) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2fb70c41b2..2fe9d0e699 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1917,7 +1917,7 @@ elseif(WINDOWS) target_compile_options(SDL_uclibc PRIVATE $<$:/GS-> $<$:/Gs1048576>) if(SDL_CPU_X86) target_compile_options(SDL3-shared PRIVATE "/arch:SSE") - target_compile_options(SDL3-SDL_uclibc PRIVATE "/arch:SSE") + target_compile_options(SDL_uclibc PRIVATE "/arch:SSE") endif() endif()