7 lines
173 B
CMake
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()
|