summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2013-08-16 15:08:56 +0200
committerPierre Rossi <pierre.rossi@gmail.com>2013-08-16 15:16:43 +0200
commit28a638775d1bea997c0adfdb110763e6c14819ea (patch)
tree03a5e8e7f8d8eac79e968c40a116d6eb51ce00d7 /build
parent4603b19a8dfdd6bae733310ff177458ae7c272db (diff)
Fix compile dependencies of examples.
Touching an external header wouldn't trigger the recompilation of example source files since the Makefile didn't list them as dependencies. The problem was that qmake didn't have its dependency directories set properly since our default_pre.prf would totally override the default one. Change-Id: I1cbb6b259c15a70b872241cf257a6b5f93244cb4 Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
Diffstat (limited to 'build')
-rw-r--r--build/qmake/mkspecs/features/default_pre.prf3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/qmake/mkspecs/features/default_pre.prf b/build/qmake/mkspecs/features/default_pre.prf
index 1105bd609..26e5e3428 100644
--- a/build/qmake/mkspecs/features/default_pre.prf
+++ b/build/qmake/mkspecs/features/default_pre.prf
@@ -19,3 +19,6 @@ MODULE_BASE_DIR = $$QTWEBENGINE_ROOT
unix:QMAKE_CXXFLAGS += -fno-rtti
load(functions)
+
+# Call the original default_pre.
+load(default_pre)