File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5656- Fix render to depth image on Apple Retina displays (PR #7001 )
5757- Fix infinite loop in segment_plane if num_points < ransac_n (PR #7032 )
5858- Add select_by_index method to Feature class (PR #7039 )
59-
59+ - Fix CMake configuration summary incorrectly reporting ` no ` for system BLAS.
6060
6161## 0.13
6262
Original file line number Diff line number Diff line change @@ -93,7 +93,11 @@ function(open3d_print_configuration_summary)
9393 endif ()
9494 endif ()
9595 else ()
96- open3d_aligned_print("${dep} " "no" )
96+ if (dep STREQUAL "BLAS" AND USE_SYSTEM_BLAS)
97+ open3d_aligned_print("${dep} " "yes (system)" )
98+ else ()
99+ open3d_aligned_print("${dep} " "no" )
100+ endif ()
97101 endif ()
98102 endforeach ()
99103 message (STATUS "================================================================================" )
You can’t perform that action at this time.
0 commit comments