summaryrefslogtreecommitdiffstats
path: root/Tests/PrecompiledHeader
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/PrecompiledHeader')
-rw-r--r--Tests/PrecompiledHeader/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/PrecompiledHeader/CMakeLists.txt b/Tests/PrecompiledHeader/CMakeLists.txt
index 00c3980..d423cae 100644
--- a/Tests/PrecompiledHeader/CMakeLists.txt
+++ b/Tests/PrecompiledHeader/CMakeLists.txt
@@ -2,9 +2,9 @@ cmake_minimum_required (VERSION 2.6)
PROJECT(PrecompiledHeader C)
# Make sure the proper compiler is in use.
-IF(NOT MSVC)
- MESSAGE(FATAL_ERROR "The PrecompiledHeader test works only with MSVC")
-ENDIF(NOT MSVC)
+IF(NOT MSVC AND NOT "${CMAKE_C_COMPILER_ID}" MATCHES "^(Intel)$")
+ MESSAGE(FATAL_ERROR "The PrecompiledHeader test works only with MSVC or Intel")
+ENDIF()
# Compute a custom name for the precompiled header.
IF(CMAKE_CONFIGURATION_TYPES)