-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathfpm.toml
More file actions
76 lines (59 loc) · 1.28 KB
/
fpm.toml
File metadata and controls
76 lines (59 loc) · 1.28 KB
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
name = "FortranPatterns"
[library]
source-dir = "/"
[build]
auto-executables = false
auto-examples = false
auto-tests = false
[[test]]
name = "CoR"
source-dir = "behavioral/chain_of_responsibility"
main = "CoR_main.f90"
[[test]]
name = "state"
source-dir = "behavioral/state"
main = "state_main.f90"
[[test]]
name = "strategy"
source-dir = "behavioral/strategy"
main = "strategy_main.f90"
[[test]]
name = "abstractfactory"
source-dir = "creational/abstractfactory"
main = "abstractfactory_main.f90"
[[test]]
name = "builder"
source-dir = "creational/builder"
main = "builder_main.f90"
[[test]]
name = "factory"
source-dir = "creational/factory"
main = "factory_main.f90"
[[test]]
name = "prototype"
source-dir = "creational/prototype"
main = "prototype_main.f90"
[[test]]
name = "singleton"
source-dir = "creational/singleton"
main = "singleton_main.f90"
[[test]]
name = "adapter"
source-dir = "structural/adapter"
main = "adapter_main.f90"
[[test]]
name = "bridge"
source-dir = "structural/bridge"
main = "bridge_main.f90"
[[test]]
name = "composite"
source-dir = "structural/composite"
main = "composite_main.f90"
[[test]]
name = "criteria"
source-dir = "structural/criteria"
main = "criteria_main.f90"
[[test]]
name = "decorator"
source-dir = "structural/decorator"
main = "decorator_main.f90"