fpm_manifest_build Module

Implementation of the build configuration data.

A build table can currently have the following fields

[build]
auto-executables = bool
auto-examples = bool
auto-tests = bool
link = ["lib"]


Contents


Derived Types

type, public ::  build_config_t

Configuration data for build

Components

Type Visibility Attributes Name Initial
logical, public :: auto_examples

Automatic discovery of examples

logical, public :: auto_executables

Automatic discovery of executables

logical, public :: auto_tests

Automatic discovery of tests

type(string_t), public, allocatable :: external_modules(:)

External modules to use

type(string_t), public, allocatable :: link(:)

Libraries to link against

logical, public :: module_naming = .false.

Enforcing of package module names

type(string_t), public :: module_prefix

Type-Bound Procedures

procedure , public , :: info Subroutine

Print information on this instance


Subroutines

public subroutine new_build_config(self, table, package_name, error)

Construct a new build configuration from a TOML data structure

Read more…

Arguments

Type IntentOptional Attributes Name
type(build_config_t), intent(out) :: self

Instance of the build configuration

type(toml_table), intent(inout) :: table

Instance of the TOML data structure

character(len=*), intent(in) :: package_name

Package name

type(error_t), intent(out), allocatable :: error

Error handling