-
Notifications
You must be signed in to change notification settings - Fork 1
/
fpm.toml
69 lines (58 loc) · 1.59 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
name = "benchmark"
version = "1.0.0"
maintainer = "David Pfister"
author = "David Pfister"
description = "benchmarking framework"
categories = ["benchmark"]
keywords = ["benchmark", "timer"]
homepage = "https://github.com/davidpfister/benchmark.f"
[build]
auto-executables = true
auto-tests = true
auto-examples = true
external-modules = ["omp_lib","symengine"]
[preprocess]
cpp.suffixes = ["F90", "f90"]
cpp.macros = ["_FPM"]
[library]
source-dir = "src"
include-dir = ["include"]
[fortran]
implicit-external = true
[install]
library = false
[[example]]
name = "simple"
source-dir = "examples/simple"
main = "Simple.f90"
[[example]]
name = "poisson"
source-dir = "examples/poisson"
main = "Poisson.f90"
[[example]]
name = "allocation"
source-dir = "examples/allocation"
main = "Allocation.f90"
[[example]]
name = "uppercasing"
source-dir = "examples/uppercasing"
main = "UpperCasing.f90"
[[example]]
name = "parsers"
source-dir = "examples/parsers"
main = "Parsers.f90"
[example.dependencies]
equationparser = {path = "./examples/parsers/equationparser"}
evaluate = {path = "./examples/parsers/evaluate"}
FEQParse = {path = "./examples/parsers/feq-parse"}
function_parser = {path = "./examples/parsers/fortran_function_parser"}
interpreter = {path = "./examples/parsers/fortran_parser"}
fortranparser = {path = "./examples/parsers/FortranParser"}
fparser = {path = "./examples/parsers/fparser"}
fee = {path = "./examples/parsers/FunctionParser"}
M_calculator = {path = "./examples/parsers/M_calculator"}
# symengine = {path = "./examples/parsers/symengine"}
[[test]]
name = "test"
source-dir = "tests"
main="main.f90"