浏览代码

Fix PrecompiledHeader test for Intel on Windows

This commit updates the test's sanity check to allow Intel too.
Previously it refused to run on non-MSVC compilers.
Brad King 16 年之前
父节点
当前提交
667f0724a8
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      Tests/PrecompiledHeader/CMakeLists.txt

+ 3 - 3
Tests/PrecompiledHeader/CMakeLists.txt

@@ -2,9 +2,9 @@ cmake_minimum_required (VERSION 2.6)
 PROJECT(PrecompiledHeader C)
 PROJECT(PrecompiledHeader C)
 
 
 # Make sure the proper compiler is in use.
 # 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.
 # Compute a custom name for the precompiled header.
 IF(CMAKE_CONFIGURATION_TYPES)
 IF(CMAKE_CONFIGURATION_TYPES)