From 3ae89d0754aac3abbe9c932c19cbaf92a5980887 Mon Sep 17 00:00:00 2001 From: Roland Kaufmann Date: Thu, 7 Mar 2013 11:23:51 +0100 Subject: [PATCH] Print compiler version number when configuring --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b04af27..90b2efa3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,6 +63,10 @@ system_info () include (UseVCSInfo) vcs_info () +# print toolchain information to identify compilers with potential bugs +include (UseCompVer) +compiler_info () + # include special if (CMAKE_VERSION VERSION_LESS "2.8.7") message (STATUS "Enabling backward compatibility modules for CMake ${CMAKE_VERSION}")