summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/AppleClang-CXX.cmake
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-02-04 21:03:49 (GMT)
committerBrad King <brad.king@kitware.com>2015-02-04 23:28:06 (GMT)
commit82c9d6868b87a964214a468cae816642950e70b6 (patch)
tree19d2bd203133ad10dd85add3f69fe112331e9f5f /Modules/Compiler/AppleClang-CXX.cmake
parentcf38f6868536e8439bc84d57363dcc51f1fea998 (diff)
downloadCMake-82c9d6868b87a964214a468cae816642950e70b6.zip
CMake-82c9d6868b87a964214a468cae816642950e70b6.tar.gz
CMake-82c9d6868b87a964214a468cae816642950e70b6.tar.bz2
AppleClang: Remove redundant UNIX condition.
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 978c382..6d58be3 100644
--- a/Modules/Compiler/AppleClang-CXX.cmake
+++ b/Modules/Compiler/AppleClang-CXX.cmake
@@ -27,7 +27,7 @@ macro(cmake_record_cxx_compile_features)
endmacro()
set(_result 0)
- if (UNIX AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0)
+ if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0)
set(_result 0)
if(CMAKE_CXX14_STANDARD_COMPILE_OPTION)
_get_appleclang_features(${CMAKE_CXX14_STANDARD_COMPILE_OPTION} CMAKE_CXX14_COMPILE_FEATURES)