ActiveQt 包含哪些模块?

发布于 2024-11-08 02:35:42 字数 126 浏览 0 评论 0 原文

为了使用 Active Qt,我应该在 .pro 文件中包含哪些模块?我的意思是QT += ?。 并且:我可以使用 ActiveQt 开发商业软件吗? (我正在使用 Qt LGPL)。

What Module do I include in .pro file for using Active Qt? I mean QT += ?.
And: Can I develop Commercial Software using ActiveQt? (I am using Qt LGPL).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

尬尬 2024-11-15 02:35:42

Qt/QMake 在如何将其模块包含在 .pro 文件中并不总是一致的。在本例中(与 CONFIG+=designer 一样),它是

CONFIG += axserver    # for an ActiveX server component
CONFIG += axcontainer # for an ActiveX client

Cf。 http://doc.trolltech.com/latest/activeqt-server.html

至于许可,当您有疑问时,当然应该咨询律师。

也就是说,常见的解释似乎是您可以在专有项目中使用 ActiveQt 框架,是的,由于其 BSD 许可证(记录为 QAxContainer 此处 以及 QAxServer 此处)。您还应该能够静态链接这些模块(这对于 LGPL 的 Qt 模块是不可能的),但是,您应该注意要求二进制发行版包含特定免责声明的子句...

Qt/QMake isn't always consistent in how to include its modules in .pro files. In this case (as with CONFIG+=designer), it's

CONFIG += axserver    # for an ActiveX server component
CONFIG += axcontainer # for an ActiveX client

Cf. http://doc.trolltech.com/latest/activeqt-server.html.

As for licensing, you should of course always consult a lawyer when you're in doubt.

That said, the common interpretation seems to be that you can use the ActiveQt framework in proprietary projects, yes, due to their BSD license (documented for QAxContainer here and for QAxServer here). You should also be able to link these modules in statically (which is not possible with the LGPL'ed Qt modules), however, you should note the clause that requires binary distributions to include a particular disclaimer...

错々过的事 2024-11-15 02:35:42

ActiveX 有 2 个模块: QAxServerQAxContainer。正如文档中所述,它们都根据 BSD 许可证获得许可。

要包含这些模块,我相信你必须使用

QT += qaxserver qaxcontainer

There are 2 modules for ActiveX : QAxServer and QAxContainer. They are both licensed under BSD License as it says in the doc.

To include those modules i beleive you have to use

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