mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-17 03:00:46 +00:00
42 lines
862 B
Prolog
42 lines
862 B
Prolog
TEMPLATE = app
|
|
QT -= gui
|
|
CONFIG += qtestlib
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
DEPENDPATH += .
|
|
INCLUDEPATH += .
|
|
!win32: LIBS += -lz
|
|
win32 {
|
|
# workaround for qdatetime.h macro bug
|
|
DEFINES += NOMINMAX
|
|
}
|
|
|
|
# Input
|
|
HEADERS += qztest.h \
|
|
testjlcompress.h \
|
|
testquachecksum32.h \
|
|
testquagzipfile.h \
|
|
testquaziodevice.h \
|
|
testquazipdir.h \
|
|
testquazipfile.h \
|
|
testquazip.h
|
|
|
|
SOURCES += qztest.cpp \
|
|
testjlcompress.cpp \
|
|
testquachecksum32.cpp \
|
|
testquagzipfile.cpp \
|
|
testquaziodevice.cpp \
|
|
testquazip.cpp \
|
|
testquazipdir.cpp \
|
|
testquazipfile.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/ -lquazip
|
|
else:unix: LIBS += -L$$OUT_PWD/../quazip/ -lquazip
|
|
|
|
INCLUDEPATH += $$PWD/..
|
|
DEPENDPATH += $$PWD/../quazip
|