From e23075120b48c4ec31ce7cca523cba28294b8a7e Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Wed, 15 Apr 2015 22:56:03 +0200 Subject: [PATCH] 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. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) 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) -- 2.20.1