You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 370 B

12345678
  1. add_executable(xexample1_CBLAS cblas_example1.c)
  2. add_executable(xexample2_CBLAS cblas_example2.c)
  3. target_link_libraries(xexample1_CBLAS ${CBLASLIB})
  4. target_link_libraries(xexample2_CBLAS ${CBLASLIB} ${BLAS_LIBRARIES})
  5. add_test(example1_CBLAS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/xexample1_CBLAS)
  6. add_test(example2_CBLAS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/xexample2_CBLAS)