-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpm.toml
55 lines (40 loc) · 845 Bytes
/
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
name = "ecx"
version = "VERSION"
license = "MIT"
author = "Milan Skocic"
maintainer = "[email protected]"
copyright = "Copyright, Milan Skocic"
categories =["Science"]
keywords = ["electrochemistry", "impedance", "photoelectrochemistry"]
homepage = "https://milanskocic.github.io/ecx/index.html"
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"
[build]
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = false
[dependencies]
stdlib = "*"
[install]
library = true
[[example]]
name="example_in_f"
main="example.f90"
[[example]]
name="example_in_c"
main="example.c"
[[test]]
name="test_core"
main="test_core.f90"
[[test]]
name="test_eis"
main="test_eis.f90"
[[test]]
name="test_eis_capi"
main="test_eis_capi.c"
[[test]]
name="test_kinetics"
main="test_kinetics.f90"