From e574ecdccf914ca06eb5cfd6885c1cba0497d3a7 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 16 Jun 2019 00:16:52 +0200 Subject: [PATCH] Print Armadillo version if found in the summary report --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f2f4b7f8e..bfee10eb9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1337,6 +1337,9 @@ set_package_properties(Armadillo PROPERTIES TYPE REQUIRED ) if(ARMADILLO_FOUND) + set_package_properties(Armadillo PROPERTIES + DESCRIPTION "C++ library for linear algebra and scientific computing (found: v${ARMADILLO_VERSION_STRING})" + ) if(${ARMADILLO_VERSION_STRING} VERSION_LESS ${GNSSSDR_ARMADILLO_MIN_VERSION}) set(ARMADILLO_FOUND false) set(ENABLE_OWN_ARMADILLO true)