From 73ac5bc1ee5d205db575ae8f05b3cdf00b2dda25 Mon Sep 17 00:00:00 2001 From: John Maguire Date: Tue, 28 Jan 2014 14:54:52 +0100 Subject: [PATCH] Print out the Clementine display version in the cmake summary. (cherry picked from commit 9858a9d5068216bc8a42f4f69a92cb44c3bd0c15) --- cmake/Summary.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/Summary.cmake b/cmake/Summary.cmake index 55e511e98..4202741aa 100644 --- a/cmake/Summary.cmake +++ b/cmake/Summary.cmake @@ -25,6 +25,8 @@ endmacro(summary_show_part) macro(summary_show) list(SORT summary_willbuild) list(SORT summary_willnotbuild) + message("") + message("Building Clementine version: ${CLEMENTINE_VERSION_DISPLAY}") summary_show_part(summary_willbuild "The following components will be built:") summary_show_part(summary_willnotbuild "The following components WILL NOT be built:") message("")