diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2011-06-30 12:04:42 (GMT) |
---|---|---|
committer | Sergio Ahumada <sergio.ahumada@nokia.com> | 2011-06-30 12:08:11 (GMT) |
commit | 8c17d175f47cecc80e44107e0cdab45aacfaa07b (patch) | |
tree | 93c0855ef3e045e51f8ae441692c8dbfe4e9b667 /src/src.pro | |
parent | e5b732242e6058fcf8086090bd80d2ea936e60cb (diff) | |
download | Qt-8c17d175f47cecc80e44107e0cdab45aacfaa07b.zip Qt-8c17d175f47cecc80e44107e0cdab45aacfaa07b.tar.gz Qt-8c17d175f47cecc80e44107e0cdab45aacfaa07b.tar.bz2 |
Make sure JavaScriptCore is build once.
In the old WebKit the main pro file was not triggering the build of
JavaScriptCore therefore it was added as a child of src.pro. It's not
the case anymore.
Reviewed-by: Andreas Kling
Diffstat (limited to 'src/src.pro')
-rw-r--r-- | src/src.pro | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/src.pro b/src/src.pro index c8b6141..da11b69 100644 --- a/src/src.pro +++ b/src/src.pro @@ -22,7 +22,6 @@ contains(QT_CONFIG, svg): SRC_SUBDIRS += src_svg contains(QT_CONFIG, script): SRC_SUBDIRS += src_script contains(QT_CONFIG, declarative): SRC_SUBDIRS += src_declarative contains(QT_CONFIG, webkit) { - exists($$QT_SOURCE_TREE/src/3rdparty/webkit/Source/JavaScriptCore/JavaScriptCore.pro): SRC_SUBDIRS += src_javascriptcore SRC_SUBDIRS += src_webkit } !contains(QT_CONFIG, no-gui):contains(QT_CONFIG, scripttools): SRC_SUBDIRS += src_scripttools @@ -78,8 +77,6 @@ src_imports.subdir = $$QT_SOURCE_TREE/src/imports src_imports.target = sub-imports src_testlib.subdir = $$QT_SOURCE_TREE/src/testlib src_testlib.target = sub-testlib -src_javascriptcore.subdir = $$QT_SOURCE_TREE/src/3rdparty/webkit/Source/JavaScriptCore -src_javascriptcore.target = sub-javascriptcore src_webkit.file = $$QT_SOURCE_TREE/src/3rdparty/webkit/Source/WebKit.pro src_webkit.target = sub-webkit src_declarative.subdir = $$QT_SOURCE_TREE/src/declarative @@ -121,10 +118,6 @@ src_webkit_declarative.target = sub-webkitdeclarative src_webkit.depends = src_gui src_sql src_network contains(QT_CONFIG, xmlpatterns): src_webkit.depends += src_xmlpatterns src_imports.depends += src_webkit - exists($$QT_SOURCE_TREE/src/3rdparty/webkit/Source/JavaScriptCore/JavaScriptCore.pro) { - src_webkit.depends += src_javascriptcore - src_javascriptcore.depends = src_corelib - } } contains(QT_CONFIG, qt3support): src_plugins.depends += src_qt3support contains(QT_CONFIG, dbus):{ |