Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含几个库和一个主应用程序的子目录项目。当我在其中一个库中更改某些内容时,主应用程序不会与它们重新链接.. 有没有人在使用 QtCreator 时让应用程序自动重新链接其静态链接的库?
在 Qt Creator 邮件列表上有一个解决方法和一个关于这个主题的有趣讨论(qmake 似乎是这里的问题)。
解决方法是在您的主应用程序 .pro 文件中添加一个PRE_TARGETDEPS命令,例如:
PRE_TARGETDEPS
PRE_TARGETDEPS += /path/to/your/lib.a
这会强制重新链接。