-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfpm.toml
82 lines (67 loc) · 1.98 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
name = "yaeos"
version = "2.3.0"
license = "MPL"
author = "Federico E. Benelli"
maintainer = "federico.benelli@mi.unc.edu.ar"
copyright = "Copyright 2023, Federico E. Benelli"
[build]
link = ["lapack"]
auto-executables = true
auto-tests = true
auto-examples = false
module-naming = false
[install]
library = true
[fortran]
implicit-typing = false
implicit-external = true
source-form = "free"
[dependencies]
stdlib = { git="https://github.com/fortran-lang/stdlib", branch="stdlib-fpm" }
forbear = {git="https://github.com/szaghi/forbear"}
json-fortran = {git="https://github.com/jacobwilliams/json-fortran"}
forsus = {git="https://github.com/ipqa-research/forsus"}
fortime = { git = "https://github.com/gha3mi/fortime.git" }
PowellOpt = { git = "https://github.com/jacobwilliams/PowellOpt/" }
minpack = {git = "https://github.com/fortran-lang/minpack" }
finterp = { git = "https://github.com/jacobwilliams/finterp.git" }
[dev-dependencies]
test-drive = {git = "https://github.com/fortran-lang/test-drive"}
[[example]]
name = "demo"
source-dir = "example/extra"
main = "demo.f90"
[[example]]
name = "basics"
source-dir = "example/basics"
main = "1_basics.f90"
[[example]]
name = "saturation_points"
source-dir = "example/basics"
main = "2_saturation_points.f90"
[[example]]
name = "phase_split"
source-dir = "example/basics"
main = "3_phase_split.f90"
[[example]]
name = "phase_envelope"
source-dir = "example/basics"
main = "4_phase_envelope.f90"
[[example]]
name = "new_alpha_function"
source-dir = "example/advanced"
main = "new_alpha_function.f90"
[[example]]
name = "pure_psat"
source-dir = "example/basics"
main = "5_pure_psat.f90"
[[example]]
name = "huron_vidal"
source-dir = "example/basics"
main = "7_huron_vidal.f90"
# [[example]]
# name = "cubic_eos"
# source-dir = "example/advanced"
# main = "cubic_eos.f90"
# [example.dependencies]
# nlopt-f = {git="https://github.com/grimme-lab/nlopt-f"}