6 ms·
The way the license information is presented is a little misleading. The Community edition is described as for 'Open Source & Hobby Projects', giving the impres
by hartcw 12y ago
The way the license information is presented is a little misleading. The Community edition is described as for 'Open Source & Hobby Projects', giving the impression that its not possible to release a commercial product using that. Thats not true of course, its LGPL licensed and so can be used for commercial software as long as the license obligations are adherred to.
The desktop app I sell uses Qt, against the LGPL license. I would probably pay for the commercial license from them if it was more reasonably priced, but $295 per month to distribute on Mac and Windows is just too much to swallow.
- dugmartin 12y agoI missed that subhead and I agree. As long as you dynamically link against the library it's perfectly fine to use it for commercial apps.
- winslow 12y agoWhy would someone need/want to use Qt by not dynamically linking the library. I've never understood Qt's business model or what I can and cannot do with it. I just use pyside on my pet projects.
- pestaa 12y agoI believe you would purchase Qt for the training and support options, and not so much for hiding a couple of DLLs in the deliverables.
- vram22 12y ago>Thats not true of course, its LGPL licensed and so can be used for commercial software as long as the license obligations are adherred to. What are those obligations? Can you summarize or give a link? Thanks.
- FigBug 12y agoDynamically link to all Qt libraries. Release all changes made to Qt source code.
- JoshTriplett 12y agoRoughly: link dynamically or provide object files for relinking; don't prohibit reverse engineering of your software (for compatibility with new library versions); don't modify the LGPLed library to require a proprietary component to function.
- vram22 12y agoThanks, JoshTriplett and FigBug.