将 Makefile 添加到 Qt 生成的 Makefile 中

发布于 2024-08-02 06:33:57 字数 311 浏览 5 评论 0原文

我有一个构建环境,在其中向生成的每个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阿楠 2024-08-09 06:33:57

自定义 Makefile 输出

.pro文件:

QMAKE_EXTRA_TARGETS += extra_target
extra_target.commands = @echo Hello, World

运行qmake

运行ma​​ke extra_target:

你好,世界

有关其他选项,请参阅文档

Customizing Makefile Output

.pro file:

QMAKE_EXTRA_TARGETS += extra_target
extra_target.commands = @echo Hello, World

Run qmake.

Run make extra_target:

Hello, World

See the documentation for additional options.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文