-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfpm.toml
More file actions
37 lines (31 loc) · 727 Bytes
/
fpm.toml
File metadata and controls
37 lines (31 loc) · 727 Bytes
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
name="fhash"
version="0.1.0"
license="MIT"
author="Laurence Kedward"
maintainer="laurencekedward@gmail.com"
copyright="Laurence Kedward 2020"
description="Implements a hash table type with support for generic keys and values."
[[executable]]
source-dir="app/0-simple-demo"
main="main.f90"
name="simple-demo"
[[executable]]
source-dir="app/1-methods-demo"
main="main.f90"
name="methods-demo"
[[executable]]
source-dir="app/2-derived-type-demo"
main="main.f90"
name="derived-type-demo"
[[executable]]
source-dir="app/bench"
main="main.f90"
name="benchmark"
[[executable]]
source-dir="app/3-custom-key-demo"
main="main.f90"
name="custom-key-demo"
[[executable]]
source-dir="app/4-iter-demo"
main="main.f90"
name="iter-demo"