-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfpm.toml
48 lines (38 loc) · 919 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
name = "FLINT"
author = "Bharat Mahajan"
copyright = "Copyright 2024 Bharat Mahajan"
license = "Apache-2.0"
description = "Fortran Library for numerical INTegration of differential equations"
homepage = "https://github.com/princemahajan/FLINT"
keywords = ["ode", "runge-kutta", "ode-events"]
[build]
auto-executables = false
auto-examples = false
auto-tests = false
[library]
source-dir = "src"
[install]
library = true
[[test]]
name = "test_WP"
source-dir = "tests"
main = "test_WP.f90"
[[test]]
name = "test_CR3BP"
source-dir = "tests"
main = "test_CR3BP.f90"
[[test]]
name = "test_Lorenz"
source-dir = "tests"
main = "test_Lorenz.f90"
[[test]]
name = "test_TBP"
source-dir = "tests"
main = "test_TBP.f90"
#[dev-dependencies]
#rklib = { git="https://github.com/jacobwilliams/rklib.git" }
#rklib = { path = "..\\rklib" }
#[[test]]
#name = "comp_TBP_rklib"
#source-dir = "tests"
#main = "comp_TBP_rklib.f90"