summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/AppleClang-CXX.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:22:56 (GMT)
commit543c4304bb48149ed2f642f88070829a30266ec0 (patch)
treeb5ecd5114611535899ebcdd4dd15b438f7230128 /Modules/Compiler/AppleClang-CXX.cmake
parent54ff77dc621a91302abad0ab38d9bd26de8914b9 (diff)
downloadCMake-543c4304bb48149ed2f642f88070829a30266ec0.zip
CMake-543c4304bb48149ed2f642f88070829a30266ec0.tar.gz
CMake-543c4304bb48149ed2f642f88070829a30266ec0.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/AppleClang-CXX.cmake')
-rw-r--r--Modules/Compiler/AppleClang-CXX.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Compiler/AppleClang-CXX.cmake b/Modules/Compiler/AppleClang-CXX.cmake
index 0372e18..c1acae6 100644
--- a/Modules/Compiler/AppleClang-CXX.cmake
+++ b/Modules/Compiler/AppleClang-CXX.cmake
@@ -1,6 +1,6 @@
include(Compiler/Clang)
__compiler_clang(CXX)
-if(NOT CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC")
+if(NOT "x${CMAKE_CXX_SIMULATE_ID}" STREQUAL "xMSVC")
set(CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN "-fvisibility-inlines-hidden")
endif()