-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpm.toml
42 lines (37 loc) · 1.17 KB
/
fpm.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# TOML file for fpm as described at https://fpm.fortran-lang.org/en/spec/manifest.html
name = "M_LA"
version = "0.1.0"
license = "Public Domain"
author = "John S. Urban"
maintainer = "[email protected]"
copyright = "2020 John S. Urban"
description = " Linear Algebra and Array-oriented procedures (LICENSE:MIT)"
categories = ["Linear Algebra"]
keywords = ["fortran", "Arrays", "Linear Algebra"]
homepage = "https://github.com/urbanjost/M_LA.git"
#ifdef FPMVERSION >= 0.8.0
[build]
module-naming = true
# pre-version8 compatibility
[fortran]
implicit-typing = true
implicit-external = true
source-form = "default"
#endif
[install]
library=true
[[test]]
name="test_suite"
source-dir="test"
main="test_suite_M_LA.f90"
[test.dependencies]
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
#[[executable]]
#name="mat"
#source-dir="app"
#main="mat.f90"
[dependencies]
#M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
#M_strings = { git = "https://github.com/urbanjost/M_strings.git" }
#M_CLI2 = { git = "https://github.com/urbanjost/M_CLI2.git" }
#M_list = { git = "https://github.com/urbanjost/M_list.git" }