From edbf97b805d1df2fb07e8fe7c6fcb1e3002e3198 Mon Sep 17 00:00:00 2001 From: konrad Date: Mon, 5 Jan 2009 17:50:53 +0000 Subject: [PATCH] draft of autoupdate function and mkdist util git-svn-id: https://silmor.de/svn/softmagic/smoke/trunk/zip@244 6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33 --- zip.pri | 41 +---------------------------------------- zip.pro | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 40 deletions(-) create mode 100644 zip.pro diff --git a/zip.pri b/zip.pri index 8f5412f..844e698 100644 --- 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 -# 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 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 +# 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 \ -- 1.7.2.5