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 56
56
- Fix render to depth image on Apple Retina displays (PR #7001 )
57
57
- Fix infinite loop in segment_plane if num_points < ransac_n (PR #7032 )
58
58
- Add select_by_index method to Feature class (PR #7039 )
59
-
59
+ - Fix CMake configuration summary incorrectly reporting ` no ` for system BLAS.
60
60
61
61
## 0.13
62
62
Original file line number Diff line number Diff line change @@ -93,7 +93,11 @@ function(open3d_print_configuration_summary)
93
93
endif ()
94
94
endif ()
95
95
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 ()
97
101
endif ()
98
102
endforeach ()
99
103
message (STATUS "================================================================================" )
You can’t perform that action at this time.
0 commit comments