-
Notifications
You must be signed in to change notification settings - Fork 50
/
fpm.toml
81 lines (65 loc) · 1.54 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 = "fortran-astrodynamics-toolkit"
author = "Jacob Williams"
copyright = "Copyright (c) 2014-2022, Jacob Williams"
license = "BSD-3"
description = "A Modern Fortran Library for Astrodynamics"
homepage = "https://github.com/jacobwilliams/fortran-astrodynamics-toolkit"
keywords = ["astrodynamics"]
[dev-dependencies]
pyplot-fortran= { git = "https://github.com/jacobwilliams/pyplot-fortran", rev = "3.3.0" }
[build]
auto-executables = false
auto-examples = false
auto-tests = false
[library]
source-dir = "src"
[install]
library = true
[[test]]
name = "lambert_test"
source-dir = "tests/lambert"
main = "lambert_test.f90"
[[test]]
name = "lambert_test_2"
source-dir = "tests/lambert"
main = "lambert_test_2.f90"
[[test]]
name = "crtbp_test"
source-dir = "tests/crtbp"
main = "crtbp_test.f90"
[[test]]
name = "dro_test"
source-dir = "tests/dro"
main = "dro_test.f90"
[[test]]
name = "elements_test"
source-dir = "tests/elements"
main = "elements_test.f90"
[[test]]
name = "halo_test"
source-dir = "tests/halo"
main = "halo_test.f90"
[[test]]
name = "kepler_tests"
source-dir = "tests/kepler"
main = "kepler_tests.f90"
[[test]]
name = "cw_test"
source-dir = "tests/cw_test"
main = "cw_test.f90"
[[test]]
name = "ephemeris_comparison"
source-dir = "tests/ephemeris"
main = "ephemeris_comparison.f90"
[[test]]
name = "fat_tests"
source-dir = "tests/unit_tests"
main = "fat_tests.f90"
[[test]]
name = "gravity_test"
source-dir = "tests/gravity"
main = "gravity_test.f90"
[[test]]
name = "geodetic_test"
source-dir = "tests/geodetic_test"
main = "geodetic_test.f90"