I have four projects:
- cv
- cxcore
- highgui
- TemplateMatching
The project dependencies:
- project cv depends on cxcore
- project highgui depends on cxcore
- project TemplateMatching depends on cv, cxcore, highgui
but there are still some errors:
Build started: Project: highgui, Configuration: Debug Win32
.....
LINK : ....\bin\cxcore100d.dll not found or not built by the last incremental link; performing full link
cvcap.obj : error LNK2019: unresolved external symbol cvFree referenced in function _cvReleaseCapture
cvcap_vfw.obj : error LNK2001: unresolved external symbol cvFree
cvcap_vfw.obj : error LNK2019: unresolved external symbol _cvReleaseImage referenced in function "void __cdecl icvCloseCAM_VFW(struct CvCaptureCAM_VFW *)" (?icvCloseCAM_VFW@@YAXPAUCvCaptureCAM_VFW@@@Z)
image.obj : error LNK2001: unresolved external symbol _cvReleaseImage
loadsave.obj : error LNK2001: unresolved external symbol _cvCreateImage
loadsave.obj : error LNK2001: unresolved external symbol _cvFlip
image.obj : error LNK2019: unresolved external symbol _cvSetImageROI referenced in ....\bin/highgui100d.dll : fatal error LNK1120: 31 unresolved externals.....
highgui - 56 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========
I don't konw how to figure it out.... How can I make "TemplateMatching" use the functions in the cv/cxcore/highgui projects?
Thanks