diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2021-04-22 09:26:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 09:26:33 -0500 |
commit | a9adf2b3ed09d0769f1095ddf7c2c06f71f10161 (patch) | |
tree | ee26e1ff4ccd05ed465463f82b6b3d37ba03e015 /src/fpm_model.f90 | |
parent | fbbfb2c1c316674a83acd666754a3fd18b643d84 (diff) | |
parent | a1dbbdab1b1c1d3807d9aa970b7943792f33641f (diff) | |
download | fpm-a9adf2b3ed09d0769f1095ddf7c2c06f71f10161.tar.gz fpm-a9adf2b3ed09d0769f1095ddf7c2c06f71f10161.zip |
Merge pull request #442 from everythingfunctional/different-archiver-on-windows
Use lib instead of ar on Windows
Diffstat (limited to 'src/fpm_model.f90')
-rw-r--r-- | src/fpm_model.f90 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/fpm_model.f90 b/src/fpm_model.f90 index b8a4143..9746e5f 100644 --- a/src/fpm_model.f90 +++ b/src/fpm_model.f90 @@ -1,6 +1,6 @@ !># The fpm package model !> -!> Defines the fpm model data types which encapsulate all information +!> Defines the fpm model data types which encapsulate all information !> required to correctly build a package and its dependencies. !> !> The process (see `[[build_model(subroutine)]]`) for generating a valid `[[fpm_model]]` involves @@ -117,6 +117,9 @@ type :: fpm_model_t !> Command line name to invoke fortran compiler character(:), allocatable :: fortran_compiler + !> Command line to invoke for creating static library + character(:), allocatable :: archiver + !> Command line name to invoke c compiler character(:), allocatable :: c_compiler @@ -131,7 +134,7 @@ type :: fpm_model_t !> Native libraries to link against type(string_t), allocatable :: link_libraries(:) - + !> External modules used type(string_t), allocatable :: external_modules(:) |