diff options
author | Kai Koehne <[email protected]> | 2012-12-01 23:22:55 +0100 |
---|---|---|
committer | Pierre Rossi <[email protected]> | 2012-12-01 23:29:48 +0100 |
commit | 61f01c875c56438dc1843dc3b1995a0149a71975 (patch) | |
tree | f9fdae05c851c3f461ee195a4305259e43a399cc /src/plugins/help/help.pro | |
parent | de4fd54c7629c164cc2871590b64c6d63c6c18b4 (diff) |
(Hopefully) fix compilation with Qt5/Mac
Compilation on mac with latest qt5 fails with
fatal error: 'QWebSettings' file not found
The compiler call adds "include/QtWebKitWidgets" to include path,
not "include/QtWebKit" . This might be a qmake related issue on mac.
Attempt to fix it by adding an explicit webkit dependency.
Change-Id: I032dd4dda7371a8d477f8544b0ba0004856f3d76
Reviewed-by: Pierre Rossi <[email protected]>
Diffstat (limited to 'src/plugins/help/help.pro')
-rw-r--r-- | src/plugins/help/help.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/help/help.pro b/src/plugins/help/help.pro index cafc9a319b0..26aa05b25bf 100644 --- a/src/plugins/help/help.pro +++ b/src/plugins/help/help.pro @@ -4,7 +4,7 @@ TARGET = Help QT += network greaterThan(QT_MAJOR_VERSION, 4) { QT += printsupport help - !isEmpty(QT.webkitwidgets.name): QT += webkitwidgets + !isEmpty(QT.webkitwidgets.name): QT += webkitwidgets webkit else: DEFINES += QT_NO_WEBKIT } else { CONFIG += help |