Last active
December 20, 2015 16:59
-
-
Save arbruijn/6165458 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/3rdparty/webkit/Source/WebKit.pro b/src/3rdparty/webkit/Source/WebKit.pro | |
index 9be0f4a..abbccf7 100644 | |
--- a/src/3rdparty/webkit/Source/WebKit.pro | |
+++ b/src/3rdparty/webkit/Source/WebKit.pro | |
@@ -3,14 +3,8 @@ CONFIG += ordered | |
include(WebKit.pri) | |
-!v8 { | |
- exists($$PWD/JavaScriptCore/JavaScriptCore.pro): SUBDIRS += JavaScriptCore/JavaScriptCore.pro | |
- exists($$PWD/JavaScriptCore/jsc.pro): SUBDIRS += JavaScriptCore/jsc.pro | |
-} | |
- | |
webkit2:exists($$PWD/WebKit2/WebKit2.pro): SUBDIRS += WebKit2/WebKit2.pro | |
-SUBDIRS += WebCore | |
SUBDIRS += WebKit/qt/QtWebKit.pro | |
webkit2 { | |
diff --git a/src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro b/src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro | |
index 4161832..7e0b0d2 100644 | |
--- a/src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro | |
+++ b/src/3rdparty/webkit/Source/WebKit/qt/QtWebKit.pro | |
@@ -2,7 +2,6 @@ | |
CONFIG += building-libs | |
CONFIG += depend_includepath | |
-TARGET = QtWebKit | |
TEMPLATE = lib | |
DEFINES += BUILDING_WEBKIT | |
@@ -15,23 +14,45 @@ else: CONFIG_DIR = release | |
SOURCE_DIR = $$replace(PWD, /WebKit/qt, "") | |
-include($$PWD/Api/headers.pri) | |
include($$SOURCE_DIR/WebKit.pri) | |
-include($$SOURCE_DIR/JavaScriptCore/JavaScriptCore.pri) | |
+ | |
+include($$SOURCE_DIR/JavaScriptCore/JavaScriptCore.pro) | |
+ | |
+for(item, SOURCES):JAVASCRIPT_CORE_SOURCES += ../../JavaScriptCore/$$item | |
+ | |
+unset(SOURCES) | |
+ | |
+include($$SOURCE_DIR/WebCore/WebCore.pro) | |
+ | |
+for(item, SOURCES): { | |
+ path = $$split(item, '/') | |
+ | |
+ contains(path, sqlite3.c) { | |
+ WEB_CORE_SOURCES += $$item | |
+ } | |
+ | |
+ !contains(path, sqlite3.c) { | |
+ WEB_CORE_SOURCES += ../../WebCore/$$item | |
+ } | |
+} | |
+for(item, HEADERS):WEB_CORE_HEADERS += ../../WebCore/$$item | |
+ | |
+SOURCES = $$JAVASCRIPT_CORE_SOURCES $$WEB_CORE_SOURCES | |
+HEADERS = $$WEB_CORE_HEADERS | |
+ | |
+include($$PWD/Api/headers.pri) | |
+ | |
webkit2 { | |
include($$SOURCE_DIR/WebKit2/WebKit2.pri) | |
include($$SOURCE_DIR/WebKit2/WebKit2API.pri) | |
} | |
-include($$SOURCE_DIR/WebCore/WebCore.pri) | |
-!v8:prependJavaScriptCoreLib(../../JavaScriptCore) | |
-prependWebCoreLib(../../WebCore) | |
-webkit2:prependWebKit2Lib(../../WebKit2) | |
+TARGET = QtWebKit | |
# This is needed for syncqt when it parses the dependencies on module's main pro file so | |
# the generated includes are containing the dependencies. | |
# It used to be in WebCore.pro but now that this is the main pro file it has to be here. | |
-QT += network | |
+QT += network gui | |
isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../.. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment