I m trying to link my project with fftw and so far, I ve gotten it to compile, but not link. As the site said, I generated all the .lib files (even though I m only using double precision), and copied them to C:Program FilesMicrosoft Visual Studio 9.0VClib
, the .h file to C:Program FilesMicrosoft Visual Studio 9.0VCinclude
and the .dll to C:windowssystem32
.
I ve copied the tutorial program, and the exact error I am getting is:
1>hw10.obj : error LNK2019: unresolved external symbol __imp__fftw_free referenced in function "bool __cdecl test(void)" (?test@@YA_NXZ)
1>hw10.obj : error LNK2019: unresolved external symbol __imp__fftw_destroy_plan referenced in function "bool __cdecl test(void)" (?test@@YA_NXZ)
1>hw10.obj : error LNK2019: unresolved external symbol __imp__fftw_execute referenced in function "bool __cdecl test(void)" (?test@@YA_NXZ)
1>hw10.obj : error LNK2019: unresolved external symbol __imp__fftw_plan_dft_1d referenced in function "bool __cdecl test(void)" (?test@@YA_NXZ)
1>hw10.obj : error LNK2019: unresolved external symbol __imp__fftw_malloc referenced in function "bool __cdecl test(void)" (?test@@YA_NXZ)
So, what could be wrong with my project setup? Thanks!