diff options
author | Brad King <brad.king@kitware.com> | 2014-10-21 19:08:07 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-10-21 19:08:07 (GMT) |
commit | 95d84f76d9a8e27eb974fce7d06b7f2e312a05e6 (patch) | |
tree | 727105aeb6ebba64c18a3af64c207e50cf900104 /Tests/Preprocess | |
parent | c8ba39719409dc106f76c0b67f805158be01b3b4 (diff) | |
parent | 29c3edb87adedd82e816552d958f4c3540a1511b (diff) | |
download | CMake-95d84f76d9a8e27eb974fce7d06b7f2e312a05e6.zip CMake-95d84f76d9a8e27eb974fce7d06b7f2e312a05e6.tar.gz CMake-95d84f76d9a8e27eb974fce7d06b7f2e312a05e6.tar.bz2 |
Merge topic 'cmake-cmp0054-warnings'
29c3edb8 Avoid if() quoted auto-dereference
Diffstat (limited to 'Tests/Preprocess')
-rw-r--r-- | Tests/Preprocess/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Preprocess/CMakeLists.txt b/Tests/Preprocess/CMakeLists.txt index cdfdcc1..8ff0cfd 100644 --- a/Tests/Preprocess/CMakeLists.txt +++ b/Tests/Preprocess/CMakeLists.txt @@ -114,7 +114,7 @@ endif() set(EXPR_OP1 "/") if((NOT MSVC OR PP_NMAKE) AND - NOT "${CMAKE_C_COMPILER_ID}" MATCHES "^(Intel)$") + NOT CMAKE_C_COMPILER_ID STREQUAL "Intel") # MSVC cl, Intel icl: % # When the cl compiler is invoked from the command line then % must # be written %% (to distinguish from %ENV% syntax). However cl does |