Skip to content

FFTW Setup Guide for Windows

Shakes edited this page Dec 6, 2018 · 1 revision
  1. Visual Studio 14 (VS 2015)
  • Download the FFTW Windows binary, usually from [their](http://www.fftw.org/install/windows.html).
  • Extracted the fftw-3.x.x-dll64.zip file, noting the path as this will be used later.
  • Open the VS Developer command prompt. I found my in the Start menu and I chose the one corresponding to the build I'm using, i.e. x64 Native
  • Generate the library files for your VS version using the lib.exe tool
cd E:\Dev\fftw-3.3.5-dll64
lib /def:libfftw3-3.def
lib /def:libfftw3f-3.def
lib /def:libfftw3l-3.def
  • Thats it! You should see a .lib file for each of the above files.
Clone this wiki locally