Skip to content

Commit 25040f9

Browse files
committed
add comment of dependency on FFTW3
1 parent 2d95e5d commit 25040f9

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,12 @@ Software License
3030
*Clara2* is licensed under the **GPLv3+**. You can use any of our *libraries* with
3131
**GPLv3+ or LGPLv3+** (they are *dual-licensed*).
3232
Please refer to our [LICENSE](LICENSE)
33+
34+
35+
Dependency
36+
----------
37+
38+
*Clara2* uses the FFTW library when used with the (faster) fft detector.
39+
If you install *Clara2*, you need to install FFTW as well. You can finde
40+
compiled code at: http://www.fftw.org/ or the source code at
41+
https://github.com/FFTW/fftw3. FFTW3 is under GNU General Public License v2.0.

src/include/makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121

2222
CC = g++
2323
CFLAGS = -Wall -O3 -c
24+
# compile against fftw library
25+
# http://www.fftw.org/ - an open source FFT library under GPL 2.0 license
2426
CFFT = -lfftw3 -lm
2527

2628
all: libDetector.a fileExists.o

src/makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222

2323
CC = g++
2424
CFLAGS = -Wall -O3
25+
# compile against fftw library
26+
# http://www.fftw.org/ - an open source FFT library under GPL 2.0 license
2527
CFFT = -lfftw3 -lm
2628
COBJ = -c
2729
OMP = -fopenmp

0 commit comments

Comments
 (0)