1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| TEMPLATE = app
| QT -= gui
| QT += network
| CONFIG += qtestlib
| CONFIG += console
| CONFIG -= app_bundle
| DEPENDPATH += .
| INCLUDEPATH += .
| !win32: LIBS += -lz
| win32 {
| # workaround for qdatetime.h macro bug
| DEFINES += NOMINMAX
| }
|
| CONFIG(staticlib): DEFINES += QUAZIP_STATIC
|
| # Input
| HEADERS += qztest.h \
| testjlcompress.h \
| testquachecksum32.h \
| testquagzipfile.h \
| testquaziodevice.h \
| testquazipdir.h \
| testquazipfile.h \
| testquazip.h \
| testquazipnewinfo.h \
| testquazipfileinfo.h
|
| SOURCES += qztest.cpp \
| testjlcompress.cpp \
| testquachecksum32.cpp \
| testquagzipfile.cpp \
| testquaziodevice.cpp \
| testquazip.cpp \
| testquazipdir.cpp \
| testquazipfile.cpp \
| testquazipnewinfo.cpp \
| testquazipfileinfo.cpp
|
| OBJECTS_DIR = .obj
| MOC_DIR = .moc
|
| win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../quazip/release/ -lquazip
| else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../quazip/debug/ -lquazipd
| else:mac:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../quazip/debug/ -lquazip_debug
| else:unix: LIBS += -L$$OUT_PWD/../quazip/ -lquazip
|
| INCLUDEPATH += $$PWD/..
| DEPENDPATH += $$PWD/../quazip
|
|