Merge topic 'fix-CMP0054-MSVC'

fa1a066a Merge branch 'backport-fix-CMP0054-MSVC' into fix-CMP0054-MSVC
4d52cd36 Avoid if() quoted auto-dereference when checking for "MSVC"
543c4304 Avoid if() quoted auto-dereference when checking for "MSVC"
This commit is contained in:
Brad King 2014-11-20 08:57:17 -05:00 committed by CMake Topic Stage
commit 3a20cef3d7
5 changed files with 11 additions and 11 deletions

View File

@ -30,11 +30,11 @@
# License text for the above reference.) # License text for the above reference.)
# if it's the MS C/CXX compiler, search for link # if it's the MS C/CXX compiler, search for link
if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC" if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC"
OR CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC" OR "x${CMAKE_CXX_SIMULATE_ID}" STREQUAL "xMSVC"
OR CMAKE_Fortran_SIMULATE_ID STREQUAL "MSVC" OR "x${CMAKE_Fortran_SIMULATE_ID}" STREQUAL "xMSVC"
OR CMAKE_C_COMPILER_ID STREQUAL "MSVC" OR "x${CMAKE_C_COMPILER_ID}" STREQUAL "xMSVC"
OR CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" OR "x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xMSVC"
OR (CMAKE_GENERATOR MATCHES "Visual Studio" OR (CMAKE_GENERATOR MATCHES "Visual Studio"
AND NOT CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android")) AND NOT CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android"))

View File

@ -1,6 +1,6 @@
include(Compiler/Clang) include(Compiler/Clang)
__compiler_clang(CXX) __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") set(CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN "-fvisibility-inlines-hidden")
endif() endif()

View File

@ -1,7 +1,7 @@
include(Compiler/Clang) include(Compiler/Clang)
__compiler_clang(CXX) __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") set(CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN "-fvisibility-inlines-hidden")
endif() endif()

View File

@ -18,8 +18,8 @@ if(__COMPILER_CLANG)
endif() endif()
set(__COMPILER_CLANG 1) set(__COMPILER_CLANG 1)
if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC" if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC"
OR CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC") OR "x${CMAKE_CXX_SIMULATE_ID}" STREQUAL "xMSVC")
macro(__compiler_clang lang) macro(__compiler_clang lang)
endmacro() endmacro()
else() else()

View File

@ -18,8 +18,8 @@ if(__WINDOWS_CLANG)
endif() endif()
set(__WINDOWS_CLANG 1) set(__WINDOWS_CLANG 1)
if(CMAKE_C_SIMULATE_ID STREQUAL "MSVC" if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC"
OR CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC") OR "x${CMAKE_CXX_SIMULATE_ID}" STREQUAL "xMSVC")
include(Platform/Windows-MSVC) include(Platform/Windows-MSVC)
macro(__windows_compiler_clang lang) macro(__windows_compiler_clang lang)
__windows_compiler_msvc(${lang}) __windows_compiler_msvc(${lang})