From: Konrad Rosenbaum Date: Fri, 27 Jul 2012 17:25:29 +0000 (+0200) Subject: convert zip to shared lib X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=4ba852d2497b0e52deba8cd7c40eb2590b99c024;p=web%2Fkonrad%2Fsmoke.git convert zip to shared lib --- diff --git a/zip/src/zip.pro b/zip/zip.pro similarity index 78% rename from zip/src/zip.pro rename to zip/zip.pro index fb77230..c93073b 100644 --- a/zip/src/zip.pro +++ b/zip/zip.pro @@ -28,29 +28,31 @@ # Boston, MA 02111-1307, USA. TEMPLATE = lib -TARGET = QZip -DESTDIR = .. -CONFIG += release staticlib create_prl +TARGET = QtZipHelper +DESTDIR = src/.. +CONFIG += dll create_prl OBJECTS_DIR = .ctmp MOC_DIR = .ctmp RCC_DIR = .ctmp LIBS += -lz +VERSION = 0.3.0 + SOURCES += \ - ioapi.c \ - unzip.c \ - zip.c \ - qtioapi.cpp \ - qunzip.cpp \ - qzip.cpp \ + src/ioapi.c \ + src/unzip.c \ + src/zip.c \ + src/qtioapi.cpp \ + src/qunzip.cpp \ + src/qzip.cpp \ HEADERS += \ - ioapi.h \ - unzip.h \ - zip.h \ - qtioapi.h \ - ../include/qunzip.h \ - ../include/qzip.h \ + src/ioapi.h \ + src/unzip.h \ + src/zip.h \ + src/qtioapi.h \ + include/qunzip.h \ + include/qzip.h \ -INCLUDEPATH += ../include -DEPENDPATH += ../include +INCLUDEPATH += include src . +DEPENDPATH += include src .