-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfpm.toml
45 lines (36 loc) · 928 Bytes
/
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
name = "feq-parse"
license = "Other"
author = "Fluid Numerics LLC"
copyright = "Copyright 2020 Fluid Numerics LLC"
description = "An equation parser class for Modern Fortran"
homepage = "https://github.com/FluidNumerics/feq-parse"
version = "2.1.1"
keywords = ["parser"]
[build]
auto-executables = false
auto-examples = false
auto-tests = true
[library]
source-dir = "src"
[install]
library = true
[[example]]
name = "array_with_array_eval"
source-dir = "example"
main = "array_with_array_eval.f90"
[[example]]
name = "array_with_scalar_eval"
source-dir = "example"
main = "array_with_scalar_eval.f90"
[[example]]
name = "scalar_with_scalar_eval"
source-dir = "example"
main = "scalar_with_scalar_eval.f90"
[[example]]
name = "scalar_function_product"
source-dir = "example"
main = "scalar_function_product.f90"
[[example]]
name = "gaussian_scalar_multivar"
source-dir = "example"
main = "gaussian_scalar_multivar.f90"