-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpm.toml
32 lines (26 loc) · 821 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
name = "spectrum"
version = "1.1.5"
license = "GPL-3.0"
author = "Jason Christopherson"
maintainer = "Jason Christopherson"
copyright = "Copyright 2023-2025, Jason Christopherson"
description = "A modern Fortran signal analysis library."
homepage = "https://github.com/jchristopherson/spectrum"
[library]
source-dir = "src"
[dependencies]
ferror = { git = "https://github.com/jchristopherson/ferror" }
fftpack = { git = "https://github.com/fortran-lang/fftpack" }
linalg = { git = "https://github.com/jchristopherson/linalg" }
[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
[[test]]
name = "spectrum_tests"
source-dir = "test"
main = "spectrum_tests.f90"