File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 55 EXCLUDE_FROM_ALL $<NOT :$<CONFIG:Debug>>
66 )
77 target_link_libraries (test_asan ${MATH_LIBRARY} )
8- target_link_libraries (test_asan openblas )
8+ target_link_libraries (test_asan BLAS::BLAS )
99 target_link_libraries (test_asan hmat_lib)
1010else ()
1111 message (STATUS "Building executable test_unsafe" )
1414 EXCLUDE_FROM_ALL $<NOT :$<CONFIG:Debug>>
1515 )
1616 target_link_libraries (test_unsafe ${MATH_LIBRARY} )
17- target_link_libraries (test_unsafe openblas )
17+ target_link_libraries (test_unsafe BLAS::BLAS )
1818 target_link_libraries (test_unsafe hmat_lib)
1919endif ()
2020
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ add_library(
1818)
1919
2020target_link_libraries (hmat_lib ${MATH_LIBRARY} )
21- target_link_libraries (hmat_lib openblas )
21+ target_link_libraries (hmat_lib BLAS::BLAS )
2222
2323if (OpenMP_C_FOUND)
2424 target_link_libraries (hmat_lib OpenMP::OpenMP_C)
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ if(BUILD_TESTING)
1717 )
1818
1919 target_link_libraries (test_real_data ${MATH_LIBRARY} )
20- target_link_libraries (test_real_data openblas )
20+ target_link_libraries (test_real_data BLAS::BLAS )
2121 target_link_libraries (test_real_data PkgConfig::CRITERION)
2222
2323 target_link_libraries (test_real_data testing_utils)
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if(BUILD_TESTING)
1313 )
1414
1515 target_link_libraries (unit_test ${MATH_LIBRARY} )
16- target_link_libraries (unit_test openblas )
16+ target_link_libraries (unit_test BLAS::BLAS )
1717 target_link_libraries (unit_test PkgConfig::CRITERION)
1818
1919 target_link_libraries (unit_test testing_utils)
@@ -36,7 +36,7 @@ if(BUILD_TESTING)
3636 )
3737
3838 target_link_libraries (test_constructors_omp ${MATH_LIBRARY} )
39- target_link_libraries (test_constructors_omp openblas )
39+ target_link_libraries (test_constructors_omp BLAS::BLAS )
4040 target_link_libraries (test_constructors_omp PkgConfig::CRITERION)
4141 target_link_libraries (test_constructors_omp OpenMP::OpenMP_C)
4242
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ if(BUILD_TESTING)
55 )
66
77 target_link_libraries (testing_utils ${MATH_LIBRARY} )
8- target_link_libraries (testing_utils openblas )
8+ target_link_libraries (testing_utils BLAS::BLAS )
99 target_link_libraries (testing_utils PkgConfig::CRITERION)
1010endif ()
You can’t perform that action at this time.
0 commit comments