cmake_minimum_required(VERSION 3.10)
project(hello_world Fortran)

find_package(MPI REQUIRED)

add_executable(hello_world hello_world.F90)
target_link_libraries(hello_world PRIVATE MPI::MPI_Fortran)

install(TARGETS hello_world RUNTIME DESTINATION bin)
