I am trying to configure opencv 2.4 (pre-built) for eclipse in windows 7. For this I did the followings:
Installed OpenCV-2.4.0.exe in D:\opencv
Installed Eclipse CDT
Added D:\opencv\build\x64\mingw\bin to the windows system variable PATH
Created a simple "Helo World" opencv project in eclipse.
Added D:\opencv\build\include\opencv and D:\opencv\build\include\opencv2 to the Include Paths (-I) in eclipse
Added D:\opencv\build\include\opencv2\core\core_c.h and D:\opencv\build\include\opencv2\core\core.hpp and D:\opencv\build\include\opencv2\core\types_c.h to the Include files (-include) in eclipse
Added D:\opencv\build\x64\mingw\lib to the Library search path (-L) in eclipse
When I build the project eclipse reports: "fatal error: opencv2/core/types_c.h: No such file or directory" Did I forget something?
Thanks for your help.