You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
cmake_minimum_required(VERSION 3.4)
|
|
|
|
project(TestFindBLAS C)
|
|
|
|
include(CTest)
|
|
|
|
|
|
|
|
find_package(BLAS REQUIRED)
|
|
|
|
|
|
|
|
add_executable(test_tgt main.c)
|
|
|
|
target_link_libraries(test_tgt BLAS::BLAS)
|
|
|
|
add_test(NAME test_tgt COMMAND test_tgt)
|
|
|
|
|
|
|
|
add_executable(test_var main.c)
|
|
|
|
target_link_libraries(test_var PRIVATE ${BLAS_LIBRARIES})
|
|
|
|
add_test(NAME test_var COMMAND test_var)
|
|
|
|
|
|
|
|
if((BLA_VENDOR STREQUAL "Intel10_64lp") OR
|
|
|
|
(BLA_VENDOR STREQUAL "All" AND EXPECT_All STREQUAL "Intel10_64lp"))
|
|
|
|
if(NOT BLAS_LIBRARIES MATCHES "^(-Wl,--start-group;)?[^;]*mkl_intel_lp64")
|
|
|
|
message(FATAL_ERROR "BLAS_LIBRARIES does not start in mkl_intel_lp64:\n ${BLAS_LIBRARIES}")
|
|
|
|
endif()
|
|
|
|
endif()
|