Populate executable in case we find the default app directory
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(executable_config_t), | intent(out) | :: | self |
Instance of the executable meta data |
||
character(len=*), | intent(in) | :: | name |
Name of the package |
subroutine default_executable(self, name)
!> Instance of the executable meta data
type(executable_config_t), intent(out) :: self
!> Name of the package
character(len=*), intent(in) :: name
self%name = name
self%source_dir = "app"
self%main = "main.f90"
end subroutine default_executable