summaryrefslogtreecommitdiffstats
path: root/qtwebengine.pro
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2013-10-29 13:34:28 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-15 12:07:34 +0100
commit388b272d32bca3c9e46d571a7a4a94bbbc2b11dc (patch)
tree304e886290eaaec1f59bea3183ef7ae706a7d9f3 /qtwebengine.pro
parent496f66ee52214ac614135c736f7d89c4dd08ba14 (diff)
Fix qmake -r by moving load(qt_parts) to the end of the project
This is an issue for non-developer builds of Qt where the forwarding headers have to be generated before processing the examples project files. Change-Id: I683227c97a763c48b8ab090580f37f7134680c59 Reviewed-by: Zeno Albisser <zeno.albisser@digia.com>
Diffstat (limited to 'qtwebengine.pro')
-rw-r--r--qtwebengine.pro5
1 files changed, 3 insertions, 2 deletions
diff --git a/qtwebengine.pro b/qtwebengine.pro
index 3c7b2e980..605e0a2e1 100644
--- a/qtwebengine.pro
+++ b/qtwebengine.pro
@@ -1,5 +1,3 @@
-load(qt_parts)
-
TEMPLATE = subdirs
# The first three subdirs contain dummy .pro files that are used by qmake
@@ -55,3 +53,6 @@ debug.depends: qmake
QMAKE_EXTRA_TARGETS += release \
debug
+
+# Move this to the beginning of the project file as soon as we moved to the src layout
+load(qt_parts)