autocmake/test/fc_blas/src/CMakeLists.txt
2015-09-19 15:47:17 +02:00

7 lines
173 B
CMake

if(BLAS_FOUND)
add_executable(example example.f90)
target_link_libraries(example ${BLAS_LIBRARIES})
else()
message(FATAL_ERROR "BLAS library not found")
endif()