-
Notifications
You must be signed in to change notification settings - Fork 4
/
fpm.toml
130 lines (118 loc) · 2.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
name = "forlab"
version = "1.0.2"
license = "MIT"
author = "FORLAB contributors"
maintainer = "@Fortran-Fans/FORALB"
copyright = "2016-2021 FORLAB contributors"
description = "A Fortran module that provides a lot of functions for scientific computing"
categories = ["numerical"]
keywords = ["numerical", "easy-to-use"]
[build]
auto-executables = false
auto-examples = true
auto-tests = false
[dependencies]
# Use stdlib as an upstream dependency.
stdlib = { git = "https://github.com/fortran-lang/stdlib", branch = "stdlib-fpm" }
[dev-dependencies]
test-drive = { git = "https://github.com/fortran-lang/test-drive" }
[library]
source-dir="src"
[install]
library = true
#=========================== tests =============================================
## [io] tests
[[test]]
name = "io_bin"
source-dir = "test/io"
main = "test_io_bin.f90"
[[test]]
name = "io_disp"
source-dir = "test/io"
main = "test_io_disp.f90"
[[test]]
name = "io_file"
source-dir = "test/io"
main = "test_io_file.f90"
[[test]]
name = "io_color"
source-dir = "test/io"
main = "test_io_color.f90"
[[test]]
name = "io_read_line"
source-dir = "test/io"
main = "test_io_read_line.f90"
## [linalg] tests
[[test]]
name = "linalg_diff"
source-dir = "test/linalg"
main = "test_linalg_diff.f90"
[[test]]
name = "linalg_i"
source-dir = "test/linalg"
main = "test_linalg_i.f90"
[[test]]
name = "linalg_linspace"
source-dir = "test/linalg"
main = "test_linalg_linspace.f90"
[[test]]
name = "linalg_tri"
source-dir = "test/linalg"
main = "test_linalg_tri.f90"
[[test]]
name = "linalg_x"
source-dir = "test/linalg"
main = "test_linalg_x.f90"
[[test]]
name = "linalg_zerosones"
source-dir = "test/linalg"
main = "test_linalg_zerosones.f90"
## [math] tests
[[test]]
name = "math_angle"
source-dir = "test/math"
main = "test_math_angle.f90"
[[test]]
name = "math_degcir"
source-dir = "test/math"
main = "test_math_degcir.f90"
[[test]]
name = "math_is_close"
source-dir = "test/math"
main = "test_math_is_close.f90"
[[test]]
name = "math_all_close"
source-dir = "test/math"
main = "test_math_all_close.f90"
[[test]]
name = "math_arange"
source-dir = "test/math"
main = "test_math_arange.f90"
[[test]]
name = "math_signum"
source-dir = "test/math"
main = "test_math_signum.f90"
## [stats] tests
[[test]]
name = "stats"
source-dir = "test/stats"
main = "stats_checker.f90"
[[test]]
name = "stats_var"
source-dir = "test/stats"
main = "test_stats_var.f90"
## [sorting] tests
[[test]]
name = "sorting_sort"
source-dir = "test/sorting"
main = "test_sorting_sort.f90"
## [time] tests
[[test]]
name = "time_tioc"
source-dir = "test/time"
main = "test_time_tioc.f90"
# New Unit-Test
[[test]]
name = "new"
source-dir = "test"
main = "checker.f90"