We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e7b174 commit ad57d25Copy full SHA for ad57d25
cmake/Open3DPrintConfigurationSummary.cmake
@@ -93,7 +93,11 @@ function(open3d_print_configuration_summary)
93
endif()
94
95
else()
96
- open3d_aligned_print("${dep}" "no")
+ 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()
101
102
endforeach()
103
message(STATUS "================================================================================")
0 commit comments