diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d93129e3f0..22697b6678b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,7 +57,7 @@ - Fix infinite loop in segment_plane if num_points < ransac_n (PR #7032) - Add select_by_index method to Feature class (PR #7039) - Add optional indices arg for fast computation of a small subset of FPFH features (PR #7118). - +- Fix CMake configuration summary incorrectly reporting `no` for system BLAS. (PR #7230) ## 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 "================================================================================")