Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ compression (zip) library for closed-source app

Please recommend a C++ compression (zip) library for a commercial, closed-source application. So, not a GPL license.

This is for my day job...

like image 964
Corey Trager Avatar asked Apr 15 '09 14:04

Corey Trager


2 Answers

I know you said C++, but zlib is a very permissively licensed C library that you could use directly from a C++ app.

If I recall correctly, there are various "iostream-like" wrappers around zlib available, too.

like image 127
leander Avatar answered Oct 19 '22 02:10

leander


7 Zip is LGPL, meaning so long as you treat it like a 3rd-party library, your usage of it is fine in a closed-source app.

http://www.7-zip.org/

like image 30
Doug T. Avatar answered Oct 19 '22 02:10

Doug T.