Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to add zlib to an existing qt installation

Tags:

c++

zlib

qt

How can I add zlib to an existing installation of Qt. I m pretty new in this so please give me detailed description! Thanks for your help in advance!

like image 681
defiant Avatar asked Oct 23 '10 06:10

defiant


1 Answers

zlib is contained in the core Qt libraries. If you want to use the zlib functions in a Qt program, you only have to include zlib.h which is in src/3rdparty/zlib. See e.g. the implementation of QByteArray in src/corelib/tools.

If you want to use quazip, just add the library to your project. It is based on the Qt libraries. Take care to build the correct qyazip library that corresponds to your Qt installation.

You get the correct include path by adding the following line to your project file:

INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/zlib

For Qt5, see Thorbjørn's comment: it is sufficient to use #include <QtZlib/zlib.h>.

like image 181
hmuelner Avatar answered Oct 03 '22 00:10

hmuelner