-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfpm.toml
54 lines (41 loc) · 1.33 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
name = "LightKrylov"
version = "0.1.0"
license = "BSD-3-Clause"
author = "Jean-Christophe Loiseau"
maintainer = "[email protected]"
copyright = "Copyright 2023, Jean-Christophe Loiseau"
description = "Lightweight fortran implementation of Krylov subspace techniques"
[build]
auto-executables = true
auto-tests = true
auto-examples = true
module-naming = false
external-modules = "mpi_f08"
[install]
library = true
[fortran]
implicit-typing = false
implicit-external = true
source-form = "free"
[dependencies]
stdlib = "*"
FACE = {git="https://github.com/szaghi/FACE.git"}
[dev-dependencies]
test-drive.git = "https://github.com/nekStab/test-drive.git"
FACE = {git="https://github.com/szaghi/FACE.git"}
[[example]]
#---------------------------------------------------------
#----- SETUP FOR THE GINZBURG-LANDAU EXAMPLE -----
#---------------------------------------------------------
name = "Ginzburg-Landau"
source-dir = "example/ginzburg_landau"
[example.dependencies]
rklib = { git="https://github.com/jacobwilliams/rklib.git" }
[[example]]
#----------------------------------------------
#----- SETUP FOR ROESSLER EXAMPLE -----
#----------------------------------------------
name = "Roessler"
source-dir = "example/roessler"
[example.dependencies]
rklib = { git="https://github.com/jacobwilliams/rklib.git" }