xmake-fortran
Installation
SKILL.md
Building Fortran with Xmake
Xmake supports Fortran since v2.3.6 via gfortran, and Intel Fortran (ifort) since v2.3.8.
1. Minimal project
xmake create -l fortran -t console hello
cd hello
xmake run
add_rules("mode.debug", "mode.release")
target("hello")
set_kind("binary")
add_files("src/*.f90")