Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(build_target_ptr), | intent(in) | :: | targets(:) | |||
type(string_t), | intent(out), | allocatable | :: | list(:) |
subroutine filter_library_targets(targets, list)
type(build_target_ptr), intent(in) :: targets(:)
type(string_t), allocatable, intent(out) :: list(:)
integer :: i, n
n = 0
call resize(list)
do i = 1, size(targets)
if (targets(i)%ptr%target_type == FPM_TARGET_ARCHIVE) then
if (n >= size(list)) call resize(list)
n = n + 1
list(n)%s = targets(i)%ptr%output_file
end if
end do
call resize(list, n)
end subroutine filter_library_targets