我已经安装了MinGW编译器,我正在尝试从Netbeans中运行C ++ QT应用程序。
从这个截图中可以看出,我已经使用Netbeans成功设置了本机构建工具:
不幸的是,在尝试运行我的程序时,我收到以下错误:
make.exe": /bin/sh: Command not found
make.exe": /bin/sh: Command not found
make.exe": *** [.validate-impl] Error 127
BUILD FAILED (exit value 2, total time: 303ms)
为了清楚起见,我没有运行复杂的程序,事实上,我只是在尝试执行基本生成的主文件:
#include <QApplication>
int main(int argc, char *argv[]) {
// initialize resources, if needed
// Q_INIT_RESOURCE(resfile);
QApplication app(argc, argv);
// create and show your widgets here
return app.exec();
}
您可以在此处下载我的Makefile-Debug和Makefile-impl:http://wikisend.com/download/467700/makefiles.zip
我非常感谢你的帮助。