~ubuntu-branches/ubuntu/edgy/psi/edgy

« back to all changes in this revision

Viewing changes to cutestuff/zip/zip.pri

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2004-06-15 00:10:41 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040615001041-enywb6pcpe4sjsw6
Tags: 0.9.2-1
* New upstream release
* Set KDEDIR for ./configure so kde specific files get installed
* Don't install libpsiwidgets.so. It got installed in /usr/share
  where it doesn't belong. May be included (at a better location)
  later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
zip {
 
2
        HEADERS += \
 
3
                $$ZIP_CPP/zip.h
 
4
 
 
5
        SOURCES += \
 
6
                $$ZIP_CPP/zip.cpp \
 
7
                $$ZIP_CPP/minizip/unzip.c
 
8
 
 
9
        win32: {
 
10
                INCLUDEPATH += $$ZIP_CPP/minizip/win32
 
11
                LIBS += $$ZIP_CPP/minizip/win32/libz.a
 
12
        }
 
13
        mac: {
 
14
                QMAKE_LFLAGS += -lz
 
15
        }
 
16
}
 
17