C++ wxWidgets3.0 MinGWx32编译错误1-找不到路径

C++ wxWidgets3.0 MinGWx32编译错误1-找不到路径,c++,compilation,wxwidgets,C++,Compilation,Wxwidgets,我正在尝试编译wxWidgets 3.0;我已经下载了源代码,并且正在使用TDM-GCC(据我所知,是对MinGW的重新打包)。当我尝试编译示例时,我会遇到类似于以下的错误,并且在尝试编译库时也看到了相同的错误: D:\wxWidgets3.0\samples\access>mingw32-make -f makefile.gcc windres --use-temp-file -i../../samples/sample.rc -ogcc_mswud\accesstest_sample_

我正在尝试编译wxWidgets 3.0;我已经下载了源代码,并且正在使用TDM-GCC(据我所知,是对MinGW的重新打包)。当我尝试编译示例时,我会遇到类似于以下的错误,并且在尝试编译库时也看到了相同的错误:

D:\wxWidgets3.0\samples\access>mingw32-make -f makefile.gcc
windres --use-temp-file -i../../samples/sample.rc -ogcc_mswud\accesstest_sample_
rc.o    --define __WXMSW__       --define _UNICODE  --include-dir .\..\..\lib\gc
c_lib\mswud --include-dir ./../../include  --include-dir .  --include-dir ./../.
./samples --define NOPCH
The system cannot find the path specified.
windres: gcc exited with status 1
makefile.gcc:234: recipe for target 'gcc_mswud\accesstest_sample_rc.o' failed
mingw32-make: *** [gcc_mswud\accesstest_sample_rc.o] Error 1
我使用了Codelite的wxWidgets-3.0二进制发行版,我能够很好地编译和运行示例程序,但我想知道我做错了什么;有人能告诉我在编译库或示例程序时失败的地方吗


谢谢大家

文件
。/../samples/sample.rc
是否存在?如果您将斜杠替换为反斜杠,即
windres-i…\\ samples\sample.rc…
,此命令是否正确工作?