Get Static Qt
-
Is there somewhere I can get Qt already configured statically?
-
To get static Qt I compiled it my self.
I think it's the only way.
-
Officially, Qt is not distributed statically linked.
As Luca said, you need to build it yourself, and you can read more about that "here":http://doc.qt.nokia.com/4.6/deployment.html , including specific notes for each platform.
-
Thanks. If I use the LGPL version of Qt, can I legally compile my Qt application statically?
-
LGPL only allows dynamic linking. You may have to use GPL / commercial version of Qt if static linking is required.
-
Does this apply even if my project is open-source?
-
Yes. For Free and open source project you can choose to use GPL license.
-
[quote author="szh1" date="1282824894"]Thanks. If I use the LGPL version of Qt, can I legally compile my Qt application statically?[/quote]
Better is not to use LGPL Qt library statically linked.
-
Do I have to pay to get it GPL?
-
[quote author="szh1" date="1282828875"]Do I have to pay to get it GPL?[/quote]
No, GPL is free for use as LGPL. GPL is more restrictive license than LGPL.
-
[quote author="Denis Kormalev" date="1282829269"]
No, GPL is free for use as LGPL. GPL is more restrictive license than LGPL.[/quote]Yes, both are free for use. The main difference between them is that with the GPL license your application must be GPL too.
-
Thanks for the help!
-
Read this post: "Qt: Making the right licensing decision":http://blog.qt.nokia.com/2009/11/30/qt-making-the-right-licensing-decision/ and also the comments by Cristy Hamley. A very good differentiation between static and dynamic linking is presented.
10/13