This commit is contained in:
Gerben Jan Dijkman
2021-04-24 18:00:12 +02:00
parent 30ff39d3ba
commit 7ba454fa93
5 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
--- a/tests/auto/unit/qzip/qzip.pro 2018-05-13 08:44:01.000000000 -0000
+++ b/tests/auto/unit/qzip/qzip.pro 2020-10-10 14:23:34.377528668 -0000
@@ -1,6 +1,7 @@
CONFIG += testcase
TARGET = tst_qzip
QT += compress testlib
+QT -= gui
SOURCES += tst_qzip.cpp
wince* {

View File

@@ -0,0 +1,10 @@
diff --git a/src/compress/compress.pro b/src/compress/compress.pro
index 14ec502..3105a7f 100644
--- a/src/compress/compress.pro
+++ b/src/compress/compress.pro
@@ -11,5 +11,3 @@ HEADERS += \
qtcompressglobal.h
SOURCES += qzip.cpp
-
-include(../3rdparty/zlib.pri)

View File

@@ -0,0 +1,13 @@
--- a/tests/auto/unit/qzip/tst_qzip.cpp 2018-05-13 09:44:01.000000000 +0100
+++ b/tests/auto/unit/qzip/tst_qzip.cpp 2020-09-28 09:40:14.493025102 +0100
@@ -41,8 +41,8 @@
#include <QtTest/QtTest>
#include <QDebug>
-#include <QtCompress/qzipwriter.h>
-#include <QtCompress/qzipreader.h>
+#include <qzipwriter.h>
+#include <qzipreader.h>
class tst_QZip : public QObject
{