From 75e24ef86755aed0bec7aaffd68747db6847ee9d Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Thu, 17 Sep 2020 21:42:53 -0400 Subject: [PATCH] print version of TBB found --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa6082cb3..069b8e37c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -529,9 +529,9 @@ print_build_options_for_target(gtsam) print_config("Use System Eigen" "${GTSAM_USE_SYSTEM_EIGEN} (Using version: ${GTSAM_EIGEN_VERSION})") if(GTSAM_USE_TBB) - print_config("Use Intel TBB" "Yes") + print_config("Use Intel TBB" "Yes (Version: ${TBB_VERSION})") elseif(TBB_FOUND) - print_config("Use Intel TBB" "TBB found but GTSAM_WITH_TBB is disabled") + print_config("Use Intel TBB" "TBB (Version: ${TBB_VERSION}) found but GTSAM_WITH_TBB is disabled") else() print_config("Use Intel TBB" "TBB not found") endif()