将 Makefile 添加到 Qt 生成的 Makefile 中
我有一个构建环境,在其中向生成的每个 Makefile 添加一些前置和附加行。
如果我可以通过我的项目文件 (.pro
) 将这些行放入 qmake 生成的文件中,那就太好了。
当然,我可以通过一些简单的 shell 脚本来完成此操作,但从项目文件内部完成此操作会更好。有没有qmake命令可以用?
有谁知道如何做到这一点?
例子:
include $(ROOT)/prepend.mk $(LIB):$(OBJ) @echo ... include $(ROOT)/append.mk
I have a building environment where I add some prepending and appending lines to each Makefile generated.
It would be nice if I could put this lines into the qmake generated file via my project file (.pro
).
Of cause I can do this via some easy shell scripting but it would be much nicer to do it from inside of the project file. Is there any qmake command to use?
Does anyone have any idea how to do this?
Example:
include $(ROOT)/prepend.mk $(LIB):$(OBJ) @echo ... include $(ROOT)/append.mk
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自定义 Makefile 输出
.pro文件:
运行qmake。
运行make extra_target:
有关其他选项,请参阅文档。
Customizing Makefile Output
.pro file:
Run qmake.
Run make extra_target:
See the documentation for additional options.