From 57738871cc2a0b80fec9a1ee60f3fa17c4a1bea2 Mon Sep 17 00:00:00 2001 From: Payn Date: Sun, 17 Nov 2024 21:41:50 -0300 Subject: [PATCH] msvc now supports sse4.2 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f6272267..0323420c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -193,7 +193,7 @@ elseif(GLM_ENABLE_SIMD_SSE4_2) elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel") add_compile_options(/QxSSE4.2) elseif((CMAKE_CXX_COMPILER_ID MATCHES "MSVC") AND NOT CMAKE_CL_64) - add_compile_options(/arch:SSE2) # VC doesn't support SSE4.2 + add_compile_options(/arch:SSE4.2) endif() message(STATUS "GLM: SSE4.2 instruction set")