From: Manuel Nickschas Date: Wed, 15 Apr 2015 20:56:03 +0000 (+0200) Subject: Output the CMake version during configuration X-Git-Tag: 0.12.0~2 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=e23075120b48c4ec31ce7cca523cba28294b8a7e Output the CMake version during configuration This will allow us to quickly see if too old (or sometimes even too new) CMake versions cause problems for building. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 891d7b98..9c5a5d41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,9 @@ set(QUASSEL_MINOR 12) set(QUASSEL_PATCH 0) set(QUASSEL_VERSION_STRING "0.12-rc1") +# We want to know CMake's version for debug reasons +message(STATUS "Using CMake ${CMAKE_VERSION}") + # Tell CMake about or own modules set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)