|
hello,
I've completed the compilation steps of filezilla3 under windows successfully (using mingw,msys editor).
If I am running the source code (in visual studio 2003 .net environment) ,
it shows "cannot open include file" for many files, I included those files from the specified path in the error message.
But i can't do it for below case.
#ifdef _DEBUG
#include "../../../lib/vc_lib/mswd/wx/setup.h"
#else
#include "../../../lib/vc_lib/msw/wx/setup.h"
#endif
Error message
e:\dev\msys\1.0\home\nagira\source\wxWidgets-2.8.4\include\msvc\wx\setup.h(140): fatal error C1083: Cannot open include file: '../../../lib/vc_lib/mswd/wx/setup.h': No such file or directory
what shall i do for this.
|