diff options
author | Brad King <brad.king@kitware.com> | 2016-02-26 15:31:32 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-02-26 15:31:32 (GMT) |
commit | 6b0a664c1639b19ccc652a4be5f9824d0bf88e48 (patch) | |
tree | 9924f8f9b0a6e49e01d74f960522cee04358841b /Modules | |
parent | 467f83d2e5b215dba49901ceb1de53895fbfe6a7 (diff) | |
parent | f3ac06519f10ba535abe91dfd6e7074a366f5a14 (diff) | |
download | CMake-6b0a664c1639b19ccc652a4be5f9824d0bf88e48.zip CMake-6b0a664c1639b19ccc652a4be5f9824d0bf88e48.tar.gz CMake-6b0a664c1639b19ccc652a4be5f9824d0bf88e48.tar.bz2 |
Merge topic 'compiler-check-message'
f3ac0651 Improve compiler check message on non-Make generators
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CMakeTestCompilerCommon.cmake | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Modules/CMakeTestCompilerCommon.cmake b/Modules/CMakeTestCompilerCommon.cmake index d51b503..e0d45e7 100644 --- a/Modules/CMakeTestCompilerCommon.cmake +++ b/Modules/CMakeTestCompilerCommon.cmake @@ -13,9 +13,5 @@ # License text for the above reference.) function(PrintTestCompilerStatus LANG MSG) - if(CMAKE_GENERATOR MATCHES Make) - message(STATUS "Check for working ${LANG} compiler: ${CMAKE_${LANG}_COMPILER}${MSG}") - else() - message(STATUS "Check for working ${LANG} compiler using: ${CMAKE_GENERATOR}${MSG}") - endif() + message(STATUS "Check for working ${LANG} compiler: ${CMAKE_${LANG}_COMPILER}${MSG}") endfunction() |