|
|
|
|
|
by slavik81
3356 days ago
|
|
The open source version of Qt is LGPL, which basically means you may use it in a proprietary application if you use dynamic linking. If you link statically or copy any of its code, then your program must be free software (GPL). If you pay for a commercial license, you can link statically without restriction. The commercial version is also necessary for locked-down platforms like iOS where the dynamic linking can't be changed by the end user of the software. IANAL, and there are a few details I glossed over, but that's the simple version. |
|
In essence, you can use it in proprietary application as long as you don't modify the library and you provide means to switch to different version of the library.