source: s10k/CommonLibs/quazip-0.7.2/qztest/qztest.pro

Last change on this file was 1096, checked in by s10k, 7 years ago

Added zlib, quazip, basicxmlsyntaxhighlighter, conditionalsemaphore and linenumberdisplay libraries. zlib and quazip are pre-compiled, but you can compile them yourself, just delete the dll files (or equivalent binary files to your OS)

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