cmake: use SDL_CPU_X86 to enable MMX/SSE on x86

This commit is contained in:
Anonymous Maarten
2022-11-26 02:11:32 +01:00
committed by Anonymous Maarten
parent 21f8e3ce04
commit 3fad16cc2b

View File

@@ -992,7 +992,7 @@ if(SDL_ASSEMBLY)
elseif(MSVC_VERSION GREATER 1500) elseif(MSVC_VERSION GREATER 1500)
# TODO: SDL_cpuinfo.h needs to support the user's configuration wish # TODO: SDL_cpuinfo.h needs to support the user's configuration wish
# for MSVC - right now it is always activated # for MSVC - right now it is always activated
if(NOT ARCH_64) if(SDL_CPU_X86)
if(SDL_MMX) if(SDL_MMX)
set(HAVE_MMX TRUE) set(HAVE_MMX TRUE)
endif() endif()
@@ -1736,7 +1736,7 @@ elseif(WINDOWS)
if(MSVC AND NOT SDL_LIBC) if(MSVC AND NOT SDL_LIBC)
# Prevent codegen that would use the VC runtime libraries. # Prevent codegen that would use the VC runtime libraries.
set_property(DIRECTORY . APPEND PROPERTY COMPILE_OPTIONS "/GS-") set_property(DIRECTORY . APPEND PROPERTY COMPILE_OPTIONS "/GS-")
if(NOT ARCH_64 AND NOT CMAKE_GENERATOR_PLATFORM STREQUAL "ARM") if(SDL_CPU_X86)
set_property(DIRECTORY . APPEND PROPERTY COMPILE_OPTIONS "/arch:SSE") set_property(DIRECTORY . APPEND PROPERTY COMPILE_OPTIONS "/arch:SSE")
endif() endif()
endif() endif()