Build
------
-simply call "qmake && make" in this directory
+simply call "qmake && make" in the src directory
A static library will be created. I recommend you leave the library as static,
since dynamic libs may make some trouble, due to the fact that quite a few
-of them are called "libzip.so" or "zip.dll".
+of them are called "libqzip.so" or "qzip.dll".
Usage
------
Add something like this to your project file:
-LIBS += -L../zip -lzip
-INCLUDEPATH += ../zip
+LIBS += -L../zip -lQZip
+INCLUDEPATH += ../zip/include
(replace "../zip" with the appropriate relative path to this directory)
-In your sources simply #include zip.h and/or unzip.h.
+In your sources simply do #include<QZip> and/or <QUnZip>.
API docu
---------
# Boston, MA 02111-1307, USA.
TEMPLATE = lib
-TARGET = zip
-DESTDIR = ../zip
+TARGET = QZip
+DESTDIR = ..
CONFIG += release staticlib create_prl
OBJECTS_DIR = .ctmp
MOC_DIR = .ctmp
unzip.h \
zip.h \
qtioapi.h \
- qunzip.h \
- qzip.h \
+ ../include/qunzip.h \
+ ../include/qzip.h \
+
+INCLUDEPATH += ../include
+DEPENDPATH += ../include
\ No newline at end of file