diff options
Diffstat (limited to 'src/3rdparty/webkit/WebKit.pro')
-rw-r--r-- | src/3rdparty/webkit/WebKit.pro | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/WebKit.pro b/src/3rdparty/webkit/WebKit.pro new file mode 100644 index 0000000..3c6b1a7 --- /dev/null +++ b/src/3rdparty/webkit/WebKit.pro @@ -0,0 +1,35 @@ +TEMPLATE = subdirs +CONFIG += ordered + +include(WebKit.pri) + +SUBDIRS += \ + JavaScriptCore \ + WebCore \ + WebKitTools/QtLauncher + +!CONFIG(standalone_package) { + SUBDIRS += JavaScriptCore/jsc.pro \ + WebKit/qt/tests \ + WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro + + !win32:!symbian { + SUBDIRS += WebKitTools/DumpRenderTree/qt/ImageDiff.pro + SUBDIRS += WebKitTools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro + } + +} + +build-qtscript { + SUBDIRS += \ + JavaScriptCore/qt/api/QtScript.pro \ + JavaScriptCore/qt/tests +} + +symbian { + # Forward the install target to WebCore. A workaround since INSTALLS is not implemented for symbian + install.commands = $(MAKE) -C WebCore install + QMAKE_EXTRA_TARGETS += install +} + +include(WebKit/qt/docs/docs.pri) |