Return a comma-separated feature list for banner display.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(fpm_build_settings), | intent(in) | :: | settings |
pure function active_features(settings) result(f) class(fpm_build_settings), intent(in) :: settings character(len=:), allocatable :: f if (allocated(settings%features)) then f = join_csv(settings%features, "(none)") else f = "(none)" end if end function active_features