summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/Clang.cmake
diff options
context:
space:
mode:
authorFraser Hutchison <fraser.hutchison@maidsafe.net>2014-11-19 09:21:27 (GMT)
committerBrad King <brad.king@kitware.com>2014-11-19 21:24:54 (GMT)
commit4d52cd36ada014bc3e9a65be06b30966cf29f9a8 (patch)
tree201d12849d117b94db5c81b316ca1f36e7f899cd /Modules/Compiler/Clang.cmake
parentf7b6f3d967b9bebc720ba981bb0f4d8b706bc74c (diff)
downloadCMake-4d52cd36ada014bc3e9a65be06b30966cf29f9a8.zip
CMake-4d52cd36ada014bc3e9a65be06b30966cf29f9a8.tar.gz
CMake-4d52cd36ada014bc3e9a65be06b30966cf29f9a8.tar.bz2
Avoid if() quoted auto-dereference when checking for "MSVC"
When testing CMAKE_<LANG>_COMPILER_ID values against "MSVC", do not allow the definition of the "MSVC" variable to be expanded.
Diffstat (limited to 'Modules/Compiler/Clang.cmake')
-rw-r--r--Modules/Compiler/Clang.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Compiler/Clang.cmake b/Modules/Compiler/Clang.cmake
index eeba119..701089c 100644
--- a/Modules/Compiler/Clang.cmake
+++ b/Modules/Compiler/Clang.cmake
@@ -18,8 +18,8 @@ if(__COMPILER_CLANG)
endif()
set(__COMPILER_CLANG 1)
-if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC"
- OR CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC")
+if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC"
+ OR "x${CMAKE_CXX_SIMULATE_ID}" STREQUAL "xMSVC")
macro(__compiler_clang lang)
endmacro()
else()