summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2021-04-06 17:56:33 +0200
committerMichal Klocek <michal.klocek@qt.io>2021-04-06 19:10:05 +0200
commitfb60a0638a47564c1a1e7c2933b699d0205c810e (patch)
treece21c308b9eceee28da11a3ed1463eec161c83b4
parent1f3412fa07b524fa7917250ed0cc2661abb9246a (diff)
Fix prl files on ios
Since 42b5da qtbase supports an installation of 3rdpaty in case of static builds. Depend on 'public' qtbase 3rdparty installed libs. This fixes prl generation by not including build paths. Task-number: QTBUG-91385 Change-Id: Ib0609b2b92d6759aad639154617b45fc2fe96916 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--src/pdf/pdfcore.pro8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pdf/pdfcore.pro b/src/pdf/pdfcore.pro
index 573640030..23e0cec79 100644
--- a/src/pdf/pdfcore.pro
+++ b/src/pdf/pdfcore.pro
@@ -78,10 +78,10 @@ HEADERS += \
api/qpdfselection_p.h \
-qtConfig(webengine-qt-freetype): QMAKE_USE_PRIVATE+= freetype
-qtConfig(webengine-qt-png): QMAKE_USE_PRIVATE+= libpng
-qtConfig(webengine-qt-harfbuzz): QMAKE_USE_PRIVATE+= harfbuzz
-qtConfig(webengine-qt-jpeg): QMAKE_USE_PRIVATE+= libjpeg
+qtConfig(webengine-qt-freetype): QMAKE_USE += freetype
+qtConfig(webengine-qt-png): QMAKE_USE += libpng
+qtConfig(webengine-qt-harfbuzz): QMAKE_USE += harfbuzz
+qtConfig(webengine-qt-jpeg): QMAKE_USE += libjpeg
qtConfig(webengine-qt-zlib){} #qtzlib is a part of QtCore
load(qt_module)