From a7da7f8ab00e6fe246ff8a02082305ea7f833fd3 Mon Sep 17 00:00:00 2001 From: Pierre Rossi <pierre.rossi@digia.com> Date: Tue, 1 Oct 2013 18:37:51 +0200 Subject: [PATCH] Mac: INCLUDEPATH fix Something seems to be busted with 5.2 lately. Specifically on Mac. Work around the problem for now. Change-Id: I4180257f31e67d02d46e26808e8b044f3b0c0cd2 Reviewed-by: Zeno Albisser <zeno.albisser@digia.com> --- lib/lib.pro | 3 +++ shared/shared.pro | 3 +++ 2 files changed, 6 insertions(+) diff --git a/lib/lib.pro b/lib/lib.pro index e9689fa39..dbfde8c59 100644 --- a/lib/lib.pro +++ b/lib/lib.pro @@ -23,6 +23,9 @@ RESOURCES += lib_resources.qrc # We need this to find the include files generated for the .pak resource files. INCLUDEPATH += $$absolute_path(../resources, $$PWD) +# something fishy with qmake in 5.2 ? +INCLUDEPATH += $$[QT_INSTALL_HEADERS] + SOURCES = \ backing_store_qt.cpp \ content_browser_client_qt.cpp \ diff --git a/shared/shared.pro b/shared/shared.pro index 108a9a255..a125819e0 100644 --- a/shared/shared.pro +++ b/shared/shared.pro @@ -13,6 +13,9 @@ TARGET = qtwebengine_shared DEFINES += QT_NO_KEYWORDS \ Q_FORWARD_DECLARE_OBJC_CLASS=QT_FORWARD_DECLARE_CLASS +# something fishy with qmake in 5.2 ? +INCLUDEPATH += $$[QT_INSTALL_HEADERS] + # We need a way to tap into gyp´s Debug vs. Release configuration PER_CONFIG_DEFINES = QTWEBENGINEPROCESS_PATH=\\\"$$getOutDir()/%config/$$QTWEBENGINEPROCESS_NAME\\\" -- GitLab