-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfpm.toml
44 lines (39 loc) · 1.66 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
# TOML file for fpm as described at https://fpm.fortran-lang.org/en/spec/manifest.html
name = "M_intrinsics"
version = "0.1.0"
license = "CC0-1.0"
author = "John S. Urban"
maintainer = "[email protected]"
copyright = "2020 John S. Urban"
description = "module of text descriptions of Fortran intrinsics and features"
categories = ["Fortran Intrinsic descriptions"]
keywords = ["fortran", "manpages", "intrinsics"]
homepage = "https://github.com/urbanjost/M_intrinsics.git"
[build]
auto-executables = true
auto-tests = true
auto-examples = false
#module-naming = true
[[executable]]
name="fpm-man"
source-dir="app"
main="fpm-man.f90"
[dependencies]
M_CLI2 = { git = "https://github.com/urbanjost/M_CLI2.git" }
M_match = { git = "https://github.com/urbanjost/M_match.git" }
M_strings = { git = "https://github.com/urbanjost/M_strings.git" }
M_attr = { git = "https://github.com/urbanjost/M_attr.git" }
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
M_io = { git = "https://github.com/urbanjost/M_io.git" }
#M_CLI2 = { namespace = "GPF" }
#M_match = { namespace = "GPF" }
#M_strings = { namespace = "GPF" }
#M_attr = { namespace = "GPF" }
#M_framework = { namespace = "GPF" }
#M_io = { namespace = "GPF" }
#M_CLI2 = { path="../GLINKS/M_CLI2" }
#M_match = { path="../GLINKS/M_match" }
#M_strings = { path="../GLINKS/M_strings" }
#M_attr = { path="../GLINKS/M_attr" }
#M_framework = { path="../GLINKS/M_framework" }
#M_io = { path="../GLINKS/M_io" }