I am trying to configure a Fortran 2008 project to use CMake; the files in the project have the \".f08\" extension. However, I cannot get CMake to work even with a \"hello
If you need to specify Fortran files with unrecognized extensions, you can set the source file's LANGUAGE property, e.g.:
set_source_files_properties(hello-world.f08 PROPERTIES LANGUAGE Fortran)