default_library Subroutine

public subroutine default_library(self)

Populate library in case we find the default src directory

Arguments

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

Instance of the library meta data


Source Code

    subroutine default_library(self)

        !> Instance of the library meta data
        type(library_config_t), intent(out) :: self

        self%source_dir = "src"
        self%include_dir = [string_t("include")]

    end subroutine default_library