Skip to content

Commit 5773887

Browse files
ivansouzamfGroovounet
authored andcommitted
msvc now supports sse4.2
1 parent 7a878c2 commit 5773887

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ elseif(GLM_ENABLE_SIMD_SSE4_2)
193193
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel")
194194
add_compile_options(/QxSSE4.2)
195195
elseif((CMAKE_CXX_COMPILER_ID MATCHES "MSVC") AND NOT CMAKE_CL_64)
196-
add_compile_options(/arch:SSE2) # VC doesn't support SSE4.2
196+
add_compile_options(/arch:SSE4.2)
197197
endif()
198198
message(STATUS "GLM: SSE4.2 instruction set")
199199

0 commit comments

Comments
 (0)