From 4513697773743cb10a3392793c13bf2aea43a996 Mon Sep 17 00:00:00 2001 From: Brian M Date: Fri, 25 Apr 2025 13:15:09 -0400 Subject: [PATCH] fix(cmake): Correctly report system BLAS in summary --- CHANGELOG.md | 2 +- cmake/Open3DPrintConfigurationSummary.cmake | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2653187a98c..63b03d0be24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,7 +56,7 @@ - Fix render to depth image on Apple Retina displays (PR #7001) - Fix infinite loop in segment_plane if num_points < ransac_n (PR #7032) - Add select_by_index method to Feature class (PR #7039) - +- Fix CMake configuration summary incorrectly reporting `no` for system BLAS. ## 0.13 diff --git a/cmake/Open3DPrintConfigurationSummary.cmake b/cmake/Open3DPrintConfigurationSummary.cmake index 3e3d42da11e..c12946af62c 100644 --- a/cmake/Open3DPrintConfigurationSummary.cmake +++ b/cmake/Open3DPrintConfigurationSummary.cmake @@ -93,7 +93,11 @@ function(open3d_print_configuration_summary) endif() endif() else() - open3d_aligned_print("${dep}" "no") + if(dep STREQUAL "BLAS" AND USE_SYSTEM_BLAS) + open3d_aligned_print("${dep}" "yes (system)") + else() + open3d_aligned_print("${dep}" "no") + endif() endif() endforeach() message(STATUS "================================================================================")