如何发布 QT LGPL 程序
我相信我的程序链接得太动态了。如何在 Windows 上将我的程序链接到 QT,然后通过 nsis 安装程序进行安装?我使用 QMake 吗?
I believe I have too dynamically link my program. How do I link my program too QT and then install it by an nsis installer, on Windows? Do I use QMake?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将您的程序与您使用的 Qt dll 一起发布即可 - 假设您没有对 Qt 源代码进行任何更改。
在 Linux 上,您可以假设它们具有正确的 dll,或者使用依赖项检查器自动从其发行版的存储库中获取它们。
在 Windows 上,您确实需要相同编译器的 Dll,因此包含它们对您来说更安全。
如果您根据自己的需要更改了 Qt 源代码,那么您需要向任何下载者提供新的 Qt 源代码 - 否则只需在 qt.nokia.com 上注明它们就足够了。
Just ship your program with the Qt dll's you have used - assuming you have made no changes to the Qt source.
On linux you can assume they have the correct dlls or will get them from their distribution's repository automatically with the dependencies checker.
On windows you really need the Dlls for the same compilers so it's safer for you to include them.
If you have changed the Qt source for your own needs then you need to offer the new Qt source to any of the downloaders - otherwise just a note pointing them at qt.nokia.com would be enough.