cmake_minimum_required(VERSION 3.20)
project(hello-fortran Fortran)

add_executable(hello hello.f90)
add_test(TEST hello COMMAND hello)
