install_config_t Derived Type

type, public :: install_config_t

Configuration data for installation


Contents

Source Code


Components

Type Visibility Attributes Name Initial
logical, public :: library

Install library with this project


Type-Bound Procedures

procedure, public, :: info

Print information on this instance

  • private subroutine info(self, unit, verbosity)

    Write information on install configuration instance

    Arguments

    Type IntentOptional Attributes Name
    class(install_config_t), intent(in) :: self

    Instance of the build configuration

    integer, intent(in) :: unit

    Unit for IO

    integer, intent(in), optional :: verbosity

    Verbosity of the printout

Source Code

  type :: install_config_t

    !> Install library with this project
    logical :: library

  contains

    !> Print information on this instance
    procedure :: info

  end type install_config_t