Commit 2b58c9bc authored by Jens Breitbart's avatar Jens Breitbart Committed by Jesse Beder
Browse files

Add Intel Compiler support to CMake config.

parent 0f20ddcd
...@@ -152,9 +152,11 @@ if(WIN32) ...@@ -152,9 +152,11 @@ if(WIN32)
endif() endif()
endif() endif()
# GCC or Clang specialities # GCC or Clang or Intel Compiler specialities
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU" OR if(CMAKE_CXX_COMPILER_ID MATCHES "GNU" OR
CMAKE_CXX_COMPILER_ID MATCHES "Clang") CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR
CMAKE_CXX_COMPILER_ID MATCHES "Intel")
### General stuff ### General stuff
if(WIN32) if(WIN32)
set(CMAKE_SHARED_LIBRARY_PREFIX "") # DLLs do not have a "lib" prefix set(CMAKE_SHARED_LIBRARY_PREFIX "") # DLLs do not have a "lib" prefix
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment