2013-08-12 7 views
2

CMake로 Visual Studio 용 프로젝트를 구축 중입니다. 내 CMakeList.txt에이 줄을 사용하여 FFTW3을 포함 시켰습니다. Windows에서 cmake를 사용하여 FFTW를 사용하는 방법은 무엇입니까?

find_library(FFTW_LIBRARY 
    NAMES fftw3 fftw) 
set(FFTW_LIBRARIES "${FFTW_LIBRARY}") 

내가 CMake에서이 오류가 발생했습니다 :

CMake Error: The following variables are used in this project, but they are set to NOTFOUND. 
Please set them or make sure they are set and tested correctly in the CMake files: 
FFTW_LIBRARY 
    linked by target "windows_SHT" in directory C:/... 

내가 제대로 FFTW 설치하지 않은 생각합니다. 폴더에 .dll .lib 및 .h 파일이 있지만 CMake에게 라이브러리가 어디 있는지 설명하는 방법을 모르겠습니다.

답변