blob: 3c6b1a7b613873081fe144ea1dd8bac6da32f87a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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)
|