From 7916af9910e5d183f786b348b00e70a0e740b0ec 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 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 86e79e1b56..a38e5f8c34 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2133,7 +2133,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()