-
Notifications
You must be signed in to change notification settings - Fork 34
/
fpm.toml
95 lines (76 loc) · 2.14 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
83
84
85
86
87
88
89
90
91
92
93
94
95
name = "FLAP"
author = "Stefano Zaghi"
copyright = "Copyright © 2016, Stefano Zaghi"
license = "Multiple licenses"
description = "Fortran command Line Arguments Parser for poor people"
maintainer = "Stefano Zaghi"
homepage = "https://github.com/szaghi/FLAP"
[dependencies]
FACE = { git="https://github.com/szaghi/FACE.git", rev="1455c549ae0c1ead96961ca61a73131d8176b6a4" }
PENF = { git="https://github.com/szaghi/PENF.git", rev="a519e6cb58873efa85a81b4cf0a547870f510629" }
[library]
source-dir = "src/lib"
[install]
library = true
[build]
auto-executables = false
auto-examples = false
auto-tests = false
[[test]]
name = "flap_test_ansi_color_style"
source-dir = "src/tests"
main = "flap_test_ansi_color_style.f90"
[[test]]
name = "flap_test_basic"
source-dir = "src/tests"
main = "flap_test_basic.f90"
[[test]]
name = "flap_test_choices_logical"
source-dir = "src/tests"
main = "flap_test_choices_logical.f90"
[[test]]
name = "flap_test_duplicated_clas"
source-dir = "src/tests"
main = "flap_test_duplicated_clas.f90"
[[test]]
name = "flap_test_group_examples"
source-dir = "src/tests"
main = "flap_test_group_examples.f90"
[[test]]
name = "flap_test_group"
source-dir = "src/tests"
main = "flap_test_group.f90"
[[test]]
name = "flap_test_hidden"
source-dir = "src/tests"
main = "flap_test_hidden.f90"
[[test]]
name = "flap_test_ignore_unknown_clas"
source-dir = "src/tests"
main = "flap_test_ignore_unknown_clas.f90"
[[test]]
name = "flap_test_minimal"
source-dir = "src/tests"
main = "flap_test_minimal.f90"
[[test]]
name = "flap_test_nested"
source-dir = "src/tests"
main = "flap_test_nested.f90"
[[test]]
name = "flap_test_save_bash_completion"
source-dir = "src/tests"
main = "flap_test_save_bash_completion.f90"
[[test]]
name = "flap_test_save_man_page"
source-dir = "src/tests"
main = "flap_test_save_man_page.f90"
[[test]]
name = "flap_test_save_usage_to_markdown"
source-dir = "src/tests"
main = "flap_test_save_usage_to_markdown.f90"
[[test]]
name = "flap_test_string"
source-dir = "src/tests"
main = "flap_test_string.f90"
[test.dependencies]
fortran_tester = { git="https://github.com/pdebuyl/fortran_tester.git", rev="806a1da52b4cd1ed0fe1650e241bf612e5776db2" }