qmake 运行外部脚本和链接
如何使 qmake 运行外部脚本(生成目标文件),然后执行链接命令,而不尝试运行编译器来创建目标文件。
How to make qmake to run external script(which produces object files) and then executing linking commands without trying to run the compiler to create object files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 stackoverflow 上或使用您首选的网络搜索引擎搜索 QMAKE_EXTRA_COMPILERS。或者使用 $$system(your_script) 并将目标文件包含在 LIBS 变量中。
Search for QMAKE_EXTRA_COMPILERS on stackoverflow or with your preferred web search engine. Or use $$system(your_script) and include the object files in the LIBS variable.