Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 5 additions & 1 deletion cmake/Open3DPrintConfigurationSummary.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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 "================================================================================")
Expand Down
Loading