-
Notifications
You must be signed in to change notification settings - Fork 1
/
fpm.toml
35 lines (28 loc) · 832 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
name = "linalg"
version = "1.8.2"
license = "GPL-3.0"
author = "Jason Christopherson"
maintainer = "Jason Christopherson"
copyright = "Copyright 2017-2024, Jason Christopherson"
description = "A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines."
homepage = "https://github.com/jchristopherson/linalg"
[library]
source-dir = "src"
[fortran]
source-form = "default"
implicit-external = true
[dependencies]
ferror = { git = "https://github.com/jchristopherson/ferror" }
[dev-dependencies]
fortran_test_helper = { git = "https://github.com/jchristopherson/fortran_test_helper" }
[install]
library = true
[build]
link = ["blas", "lapack"]
auto-executables = false
auto-examples = false
auto-tests = false
[[test]]
name = "linalg_test"
source-dir = "tests"
main = "linalg_test.f90"