qt dependant doesn not exist.

问题是这样的,我在 qtcreator 构建的项目中提前一个Dialog到我的另外一个qtcreator 中, 包含qt 的UI和类.h .cpp 文件

加入后弹出一个对话框,大概是资源需不需要添加的意思,没有细看,编译的时候产生一个错误.具体如下:

WARNING: Failure to find: Icons.qrc
WARNING: Failure to find: Icons.qrc
	C:\Qt\qtcreator-2.5.2\bin\jom.exe -f Makefile.Release
Error: dependent 'Icons.qrc' does not exist.
jom: Qt_4_8_3__4_8_3____\Makefile [release] Error 2
18:13:06: 进程"C:\Qt\qtcreator-2.5.2\bin\jom.exe"退出,退出代码 2 。
Error while building/deploying project eBuilder (target: 桌面)
When executing step 'Make'


 

如下是我的qmake 中resource内容

RESOURCES += \
    source.qrc \
    Icons.qrc


原来是添加UI设计文件时弹框提示是否加入资源路径.我点的是接受,故qmake没有过,不属于编译时错误,应该makefile 的问题。

btw

一览qmake文件内容,既然qtcreator 工程 可以通过qmakefile 文件读入,那么工程的组织信息都存在于makefile 文件当中。

 

 

你可能感兴趣的:(qt,qmake)