Skip to content

Commit ad57d25

Browse files
committed
fix(cmake): Correctly report system BLAS in summary
1 parent 1e7b174 commit ad57d25

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cmake/Open3DPrintConfigurationSummary.cmake

+5-1
Original file line numberDiff line numberDiff 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 "================================================================================")

0 commit comments

Comments
 (0)