-
Notifications
You must be signed in to change notification settings - Fork 0
/
fpm.toml
58 lines (51 loc) · 1.71 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
# TOML file for fpm as described at https://fpm.fortran-lang.org/en/spec/manifest.html
name = "M_sets"
version = "2.1.0"
license = "CC0-1.0"
author = "John S. Urban"
maintainer = "urbanjost@comcast.net"
copyright = "Copyright 2022, John S. Urban"
description = "set-theory functions including Union, intersection, and set membership"
categories = ["sets"]
keywords = ["fortran", "sets","set-theory","union","intersection","membership"]
homepage = "https://github.com/urbanjost/M_sets.git"
[build]
auto-executables = true
auto-tests = true
auto-examples = true
# new default with v0.8.0
# force module naming rules to avoid collisions with other packages
module-naming = true
# traditional where user can use any module name
#module-naming = false
# new section with v0.8.0
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"
# traditional pre-version8 compatibility
#implicit-typing = true
#implicit-external = true
#source-form = "default"
[install]
library=true
[dependencies]
M_orderpack = { git = "https://github.com/urbanjost/M_orderpack.git" }
#M_orderpack = { namespace = "GPF" }
#M_orderpack = { path = "GLINKS/M_orderpack" }
[[executable]]
name="settheory"
source-dir="app"
main="main.f90"
[executable.dependencies]
M_CLI2 = { git = "https://github.com/urbanjost/M_CLI2.git" }
#M_CLI2 = { namespace = "GPF" }
#M_CLI2 = { path = "GLINKS/M_CLI2" }
[[test]]
name="test_suite_M_sets"
source-dir="test"
main="test_suite_M_sets.f90"
[test.dependencies]
M_framework = { git = "https://github.com/urbanjost/M_framework.git" }
#M_framework = { namespace = "GPF" }
#M_framework = { path = "GLINKS/M_framework" }