draft of autoupdate function and mkdist util
authorkonrad <konrad@6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33>
Mon, 5 Jan 2009 17:50:53 +0000 (17:50 +0000)
committerkonrad <konrad@6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33>
Mon, 5 Jan 2009 17:50:53 +0000 (17:50 +0000)
git-svn-id: https://silmor.de/svn/softmagic/smoke/trunk/zip@244 6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33

zip.pri
zip.pro [new file with mode: 0644]

diff --git a/zip.pri b/zip.pri
index 8f5412f..844e698 100644 (file)
--- a/zip.pri
+++ b/zip.pri
@@ -2,43 +2,4 @@
 #
 # Modified for Magic Smoke by (c) Konrad Rosenbaum, 2007
 
-# Based on:
-#   FILE: libltzip_lib.pro -- 
-# AUTHOR: Hynek Petrak <hynek@swac.cz>
-#   DATE: 9 November 2003
-#
-# Copyright (c) 2001-2006 S.W.A.C. GmbH, Germany.
-# Copyright (c) 2001-2006 S.W.A.C. Bohemia s.r.o., Czech Republic.
-#
-# THIS SOFTWARE IS DISTRIBUTED AS IS AND WITHOUT ANY WARRANTY.
-#
-# This application is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as published
-# by the Free Software Foundation; either version 2 of the License, or (at
-# your option) any later version.
-#
-# This application is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public
-# License along with this application; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
-
-SOURCES += \
-               zip/ioapi.c \
-               zip/unzip.c \
-               zip/zip.c \
-               zip/qtioapi.cpp \
-               zip/qunzip.cpp \
-               zip/qzip.cpp \
-
-HEADERS += \
-               zip/ioapi.h \
-               zip/unzip.h \
-               zip/zip.h \
-               zip/qtioapi.h \
-               zip/qunzip.h \
-               zip/qzip.h \
+LIBS += -L ../zip -lzip
diff --git a/zip.pro b/zip.pro
new file mode 100644 (file)
index 0000000..a3ee791
--- /dev/null
+++ b/zip.pro
@@ -0,0 +1,48 @@
+# Include for ZIP-Library from LinTouch Project
+#
+# Modified for Magic Smoke by (c) Konrad Rosenbaum, 2007
+
+# Based on:
+#   FILE: libltzip_lib.pro -- 
+# AUTHOR: Hynek Petrak <hynek@swac.cz>
+#   DATE: 9 November 2003
+#
+# Copyright (c) 2001-2006 S.W.A.C. GmbH, Germany.
+# Copyright (c) 2001-2006 S.W.A.C. Bohemia s.r.o., Czech Republic.
+#
+# THIS SOFTWARE IS DISTRIBUTED AS IS AND WITHOUT ANY WARRANTY.
+#
+# This application is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as published
+# by the Free Software Foundation; either version 2 of the License, or (at
+# your option) any later version.
+#
+# This application is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this application; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+TEMPLATE = lib
+TARGET = zip
+DESTDIR = ../zip
+
+SOURCES += \
+               ioapi.c \
+               unzip.c \
+               zip.c \
+               qtioapi.cpp \
+               qunzip.cpp \
+               qzip.cpp \
+
+HEADERS += \
+               ioapi.h \
+               unzip.h \
+               zip.h \
+               qtioapi.h \
+               qunzip.h \
+               qzip.h \