diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2011-06-30 19:46:26 (GMT) |
---|---|---|
committer | Sergio Ahumada <sergio.ahumada@nokia.com> | 2011-06-30 21:53:49 (GMT) |
commit | 6d09a6ff6653aba1f36d66739f584d0795870eaa (patch) | |
tree | b663e910c44420c11004f3d2ca3545a59f2a8c6a /src | |
parent | b4d96f534ed84c3bc070b7b40f61b897f2fcfe78 (diff) | |
download | Qt-6d09a6ff6653aba1f36d66739f584d0795870eaa.zip Qt-6d09a6ff6653aba1f36d66739f584d0795870eaa.tar.gz Qt-6d09a6ff6653aba1f36d66739f584d0795870eaa.tar.bz2 |
Make sure the declarative plugin of QtWebKit is build once.
In the old WebKit the main pro file was not triggering the build of
the declarative plugin therefore it was added as a child of src.pro. It's not
the case anymore.
Reviewed-by: Andreas Kling
Diffstat (limited to 'src')
-rw-r--r-- | src/src.pro | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/src.pro b/src/src.pro index da11b69..9e29b89 100644 --- a/src/src.pro +++ b/src/src.pro @@ -27,7 +27,6 @@ contains(QT_CONFIG, webkit) { !contains(QT_CONFIG, no-gui):contains(QT_CONFIG, scripttools): SRC_SUBDIRS += src_scripttools SRC_SUBDIRS += src_plugins contains(QT_CONFIG, declarative): SRC_SUBDIRS += src_imports -contains(QT_CONFIG, declarative):contains(QT_CONFIG, webkit): SRC_SUBDIRS += src_webkit_declarative # s60installs need to be at the end, because projects.pro does an ordered build, # and s60installs depends on all the others. @@ -81,8 +80,6 @@ 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 src_declarative.target = sub-declarative -src_webkit_declarative.subdir = $$QT_SOURCE_TREE/src/3rdparty/webkit/Source/WebKit/qt/declarative -src_webkit_declarative.target = sub-webkitdeclarative #CONFIG += ordered !wince*:!ordered:!symbian-abld:!symbian-sbsv2 { @@ -136,7 +133,6 @@ src_webkit_declarative.target = sub-webkitdeclarative contains(QT_CONFIG, svg) { src_declarative.depends += src_svg } - contains(QT_CONFIG, webkit) : contains(QT_CONFIG, declarative): src_webkit_declarative.depends = src_declarative src_webkit } |