File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff 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* ).
3232Please 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.
Original file line number Diff line number Diff line change 2121
2222CC = g++
2323CFLAGS = -Wall -O3 -c
24+ # compile against fftw library
25+ # http://www.fftw.org/ - an open source FFT library under GPL 2.0 license
2426CFFT = -lfftw3 -lm
2527
2628all : libDetector.a fileExists.o
Original file line number Diff line number Diff line change 2222
2323CC = g++
2424CFLAGS = -Wall -O3
25+ # compile against fftw library
26+ # http://www.fftw.org/ - an open source FFT library under GPL 2.0 license
2527CFFT = -lfftw3 -lm
2628COBJ = -c
2729OMP = -fopenmp
You can’t perform that action at this time.
0 commit comments