sse flags for intel c++ compiler

This commit is contained in:
Campbell Barton
2011-09-30 16:37:46 +00:00
parent cf3956f450
commit 7ef5464236
2 changed files with 8 additions and 1 deletions

View File

@@ -1134,8 +1134,11 @@ if(WITH_RAYOPTIMIZATION)
elseif(MSVC)
set(_sse "/arch:SSE")
set(_sse2 "/arch:SSE2")
elseif(CMAKE_C_COMPILER_ID MATCHES "Intel")
set(_sse) # icc only has sse2
set(_sse2 "-xSSE2")
else()
message(WARNING "SSE flags for this compiler not known")
message(WARNING "SSE flags for this compiler: '${CMAKE_C_COMPILER_ID}' not known")
set(_sse)
set(_sse2)
endif()