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.
8 lines
370 B
8 lines
370 B
add_executable(xexample1_CBLAS cblas_example1.c)
|
|
add_executable(xexample2_CBLAS cblas_example2.c)
|
|
|
|
target_link_libraries(xexample1_CBLAS ${CBLASLIB})
|
|
target_link_libraries(xexample2_CBLAS ${CBLASLIB} ${BLAS_LIBRARIES})
|
|
|
|
add_test(example1_CBLAS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/xexample1_CBLAS)
|
|
add_test(example2_CBLAS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/xexample2_CBLAS)
|
|
|