有没有办法在Qt中使用.pro文件来调用另一个Makefile?例如,在makefile中,您可以使用:
make -f /other/path/Makefile
有没有像使用Qt的专业文件?
答案 0 :(得分:5)
这样的事情应该有效:
QMAKE_EXTRA_TARGETS += other
PRE_TARGETDEPS += other
other.commands = make -f /other/path/Makefile
这将导致make -f /other/path/Makefile
作为make过程的一部分被调用,并且还使您能够键入make other
来运行该命令。