-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
fpm.toml
82 lines (62 loc) · 1.27 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
name = "h5fortran"
description = "Lightweight object-oriented HDF5 interface"
categories = "io"
version = "4.10.1"
[build]
auto-tests = false
auto-examples = false
external-modules = ["hdf5", "h5lt"]
# HDF5 >= 1.10.6
# link = ["hdf5_hl_fortran", "hdf5_fortran", "hdf5_hl", "hdf5"]
# HDF5 < 1.10.6, and distros that rename the old way such as Ubuntu 22.04
link = ["hdf5hl_fortran", "hdf5_fortran", "hdf5_hl", "hdf5"]
[install]
library = true
[[test]]
name = "minimal"
main = "test_minimal.f90"
[[test]]
name = "array"
main = "test_array.f90"
[[test]]
name = "attributes"
main = "test_attributes.f90"
[[test]]
name = "cast"
main = "test_cast.f90"
[[test]]
name = "write"
main = "test_write.f90"
[[test]]
name = "deflate_write"
main = "test_deflate_write.f90"
[[test]]
name = "deflate_read"
main = "test_deflate_read.f90"
[[test]]
name = "deflate_props"
main = "test_deflate_props.f90"
[[test]]
name = "destructor"
main = "test_destructor.f90"
[[test]]
name = "exist"
main = "test_exist.f90"
[[test]]
name = "layout"
main = "test_layout.f90"
[[test]]
name = "lt"
main = "test_lt.f90"
[[test]]
name = "scalar"
main = "test_scalar.f90"
[[test]]
name = "shape"
main = "test_shape.f90"
[[test]]
name = "string"
main = "test_string.f90"
[[test]]
name = "version"
main = "test_version.f90"