aboutsummaryrefslogtreecommitdiff
path: root/src/fpm_model.f90
diff options
context:
space:
mode:
authorLKedward <laurence.kedward@bristol.ac.uk>2021-04-12 16:39:29 +0100
committerLKedward <laurence.kedward@bristol.ac.uk>2021-04-12 16:44:37 +0100
commita49b0177f8d7ca74b3bfaa325fd37ee614975367 (patch)
treed0455e6d9ebc1514a658d0d3142911dfe9b5d968 /src/fpm_model.f90
parent0d3611a5f3e7a2d7cb88ec8637a9d898b2ce4cfb (diff)
downloadfpm-a49b0177f8d7ca74b3bfaa325fd37ee614975367.tar.gz
fpm-a49b0177f8d7ca74b3bfaa325fd37ee614975367.zip
Add: external-modules key to build table for non-fpm modules
Diffstat (limited to 'src/fpm_model.f90')
-rw-r--r--src/fpm_model.f9010
1 files changed, 10 insertions, 0 deletions
diff --git a/src/fpm_model.f90 b/src/fpm_model.f90
index bfb0115..ec366d6 100644
--- a/src/fpm_model.f90
+++ b/src/fpm_model.f90
@@ -129,6 +129,9 @@ type :: fpm_model_t
!> Native libraries to link against
type(string_t), allocatable :: link_libraries(:)
+ !> External modules used
+ type(string_t), allocatable :: external_modules(:)
+
!> Project dependencies
type(dependency_tree_t) :: deps
@@ -276,6 +279,13 @@ function info_model(model) result(s)
if (i < size(model%link_libraries)) s = s // ", "
end do
s = s // "]"
+ ! type(string_t), allocatable :: external_modules(:)
+ s = s // ", external_modules=["
+ do i = 1, size(model%external_modules)
+ s = s // '"' // model%external_modules(i)%s // '"'
+ if (i < size(model%external_modules)) s = s // ", "
+ end do
+ s = s // "]"
! type(dependency_tree_t) :: deps
! TODO: print `dependency_tree_t` properly, which should become part of the
! model, not imported from another file