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")
Installs
3
GitHub Stars
16
First Seen
May 8, 2026
xmake-fortran — xmake-io/xmake-skills