diff options
author | Brad King <brad.king@kitware.com> | 2021-01-22 20:36:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-01-28 14:07:01 (GMT) |
commit | 661b04d6a66f0189c57c306cb57c8ba1863feff4 (patch) | |
tree | 22eff6ab377df0224e075f5460a59eaf268c9335 /Tests/CMakeLists.txt | |
parent | 01b1e9c40df7bc31265c61196a32a9229dd3c26d (diff) | |
download | CMake-661b04d6a66f0189c57c306cb57c8ba1863feff4.zip CMake-661b04d6a66f0189c57c306cb57c8ba1863feff4.tar.gz CMake-661b04d6a66f0189c57c306cb57c8ba1863feff4.tar.bz2 |
Tests: Skip old PrecompiledHeader test on IntelLLVM
This test uses hard-coded flags for a fixed set of compilers.
We have first-class PCH support implemented for IntelLLVM.
Diffstat (limited to 'Tests/CMakeLists.txt')
-rw-r--r-- | Tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index d28d89f..c24bb9f 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -1948,7 +1948,7 @@ if(BUILD_TESTING) if(NOT CMAKE_C_COMPILER_ID STREQUAL "Clang" OR NOT "x${CMAKE_C_COMPILER_FRONTEND_VARIANT}" STREQUAL "xGNU") ADD_TEST_MACRO(ForceInclude foo) endif() - if(NOT CMAKE_C_COMPILER_ID STREQUAL "Clang") + if(NOT CMAKE_C_COMPILER_ID STREQUAL "Clang" AND NOT CMAKE_C_COMPILER_ID STREQUAL "IntelLLVM") ADD_TEST_MACRO(PrecompiledHeader foo) endif() set(MSVCRuntimeLibrary_BUILD_OPTIONS -DCMake_TEST_CUDA=${CMake_TEST_CUDA}) |