Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-09-30 20:37:46 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-30 20:37:46 +0400
commit7ef5464236144da9bc73212477ecbf8dd48ceccc (patch)
tree52f4c76a4888bfd51cf2907e698ec1e9dbf5e590 /CMakeLists.txt
parentcf3956f450127956f92e0efea6010c5e9eb2c490 (diff)
sse flags for intel c++ compiler
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 43ecdaa2650..c95509b0a08 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -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()