Browse Source

Fixed /arch:SSE3 warnings, no supported by VC

Christophe Riccio 12 years ago
parent
commit
570ec64d38
1 changed files with 1 additions and 1 deletions
  1. 1 1
      CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -85,7 +85,7 @@ elseif(GLM_TEST_ENABLE_SSE3)
 	elseif(GLM_USE_INTEL)
 		add_definitions(/QxSSE3)
 	elseif(MSVC)
-		add_definitions(/arch:SSE3)	
+		add_definitions(/arch:SSE2) # VC doesn't support /arch:SSE3	
 	endif()
 elseif(GLM_TEST_ENABLE_SSE2)
 	if(CMAKE_COMPILER_IS_GNUCXX)