-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfpm.toml
More file actions
36 lines (29 loc) · 876 Bytes
/
fpm.toml
File metadata and controls
36 lines (29 loc) · 876 Bytes
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
name = "fstats"
version = "1.5.2"
license = "GPL-3.0"
author = "Jason Christopherson"
maintainer = "Jason Christopherson"
copyright = "Copyright 2022-2025, Jason Christopherson"
description = "A modern Fortran statistical library."
homepage = "https://github.com/jchristopherson/fstats"
[library]
source-dir = "src"
[dependencies]
ferror = { git = "https://github.com/jchristopherson/ferror" }
linalg = { git = "https://github.com/jchristopherson/linalg" }
collections = { git = "https://github.com/jchristopherson/collections" }
openmp = "*"
[dev-dependencies]
fortran_test_helper = { git = "https://github.com/jchristopherson/fortran_test_helper" }
[install]
library = true
[build]
auto-executables = false
auto-examples = false
auto-tests = false
[preprocess]
cpp.macros = ["USEOPENMP=1"]
[[test]]
name = "fstats_tests"
source-dir = "tests"
main = "fstats_tests.f90"