7 lines
107 B
CMake
7 lines
107 B
CMake
if (MPI_FOUND)
|
|
add_executable(example example.f90)
|
|
else()
|
|
message(FATAL "MPI not found!")
|
|
endif()
|
|
|