summaryrefslogtreecommitdiffstats
path: root/mkspecs/features
diff options
context:
space:
mode:
authorBrett Stottlemyer <bstottle@ford.com>2015-03-02 09:51:18 -0500
committerBrett Stottlemyer <bstottle@ford.com>2015-03-02 16:12:12 +0000
commit6a05579fbeca59ea1fed4df4b77d6152296d4fd1 (patch)
treee482a0764900898cb8d53fd20730e78b76d610b5 /mkspecs/features
parent6c008ea1187b83ba732c12b29ef66c4e1008c363 (diff)
Ensure .rep includes are found
Prior to commit a90bb5b89a09490a1795064133f6d8ce33b6874e, doing a shadow build of a project that uses repc and includes headers by #include "header.h" will not compile without this patch. The referenced patch will be part of Qt 5.5, and may be in Qt 5.4.1 (it is not in Qt 5.4.0). Change-Id: I8563c9f434a22b62c1af4b0e85999d7a73046492 Reviewed-by: Brett Stottlemyer <bstottle@ford.com> Reviewed-by: Allen Winter <allen.winter@kdab.com> Reviewed-by: Björn Breitmeyer <bjoern.breitmeyer@kdab.com>
Diffstat (limited to 'mkspecs/features')
-rw-r--r--mkspecs/features/remoteobjects_repc.prf5
1 files changed, 5 insertions, 0 deletions
diff --git a/mkspecs/features/remoteobjects_repc.prf b/mkspecs/features/remoteobjects_repc.prf
index e28787d..28c86af 100644
--- a/mkspecs/features/remoteobjects_repc.prf
+++ b/mkspecs/features/remoteobjects_repc.prf
@@ -1,6 +1,11 @@
include(repcclient.pri)
include(repcserver.pri)
+# Adding $$PWD to INCLUDEPATH is only needed prior to
+# commit a90bb5b89a09490a1795064133f6d8ce33b6874e in qtbase
+# ~ Qt 5.5/5.4.1
+INCLUDEPATH += $$PWD
+
!isEmpty(QOBJECT_REP) {
qtPrepareTool(QMAKE_REPC, repc)