stephenberry / efftw

Modern C++ FFTW Wrapper for Eigen library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update header file, efftw.hpp, to accommodate various fftw dependency configurations.

wsberry opened this issue · comments

E.g., Add the following to efftw.hpp:

#if __has_include(<fftw3.h>)
#include <fftw3.h>
#endif

#if __has_include(<fftw/fftw3.h>)
#include <fftw/fftw3.h>
#endif

Fixed in latest commit