views:

30

answers:

2

If I include code that is LGPL (GNU Lesser General Public License) does my overall project also have to be opensource? what all does LGPL include?

A: 

No. You can license your program with a different license schema if you use LGPL components and code.

Please see here

The main difference between the GPL and the LGPL is that the latter can be linked to (in the case of a library, 'used by') a non-(L)GPLed program, regardless of whether it is free software or proprietary software.

Lorenzo
A: 

No, your project does not have to be open source if you want to use a library licensed under the LGPL.

Andrew Walker