Without this qmake doesn't take headers in qt-ui into account when creating makefiles, causing parallel builds to fail.
Signed-off-by: Michael Andreen <[email protected]> --- This seems to do the trick. $$PWD doesn't seem to be needed, maybe it can be removed from INCLUDEPATH too.. subsurface.pro | 1 + 1 file changed, 1 insertion(+) diff --git a/subsurface.pro b/subsurface.pro index b557357..32f925c 100644 --- a/subsurface.pro +++ b/subsurface.pro @@ -7,6 +7,7 @@ lessThan(QT_MAJOR_VERSION, 5) { QT += webkitwidgets } INCLUDEPATH += qt-ui $$PWD +DEPENDPATH += qt-ui mac: TARGET = Subsurface else: TARGET = subsurface -- 1.8.3.2 _______________________________________________ subsurface mailing list [email protected] http://lists.hohndel.org/cgi-bin/mailman/listinfo/subsurface
