-
Notifications
You must be signed in to change notification settings - Fork 2
/
fpm.toml
47 lines (36 loc) · 926 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
46
47
name = "libsparse"
version = "0.0.0"
license = "MIT"
author = "Jeremie Vandenplas"
maintainer = "jvdp1"
copyright = "Copyright 2021, Jeremie Vandenplas"
[fortran]
implicit-typing = true
implicit-external = true
source-form = "default"
[build]
auto-executables = false
auto-tests = false
auto-examples = false
external-modules = "mkl_pardiso"
[dependencies]
openmp = "*"
[preprocess]
[preprocess.cpp]
suffixes = [".F90", ".f90"]
macros = [
"_DP=1",
"_METIS=1",
"_PARDISO=1",
"_SPAINV=1",
"_VERBOSE=0"
]
[install]
library = false
[[test]]
name = "test_sparse"
main = "test_sparse.f90"
#link = ["mkl_gf_lp64", "mkl_gnu_thread", "mkl_core", "gomp", "pthread", "m", "dl", "metis"]
link = ["mkl_blas95_lp64", "mkl_lapack95_lp64", "mkl_intel_lp64", "mkl_intel_thread", "mkl_core", "iomp5", "pthread", "m", "dl", "metis"]
[test.dependencies]
test-drive = {git = "https://github.com/fortran-lang/test-drive.git" }