blob: bc14feb5f6b430ef787104d45e688e1237a3c29d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TEMPLATE = subdirs
CONFIG += ordered
!gtk-port:CONFIG += qt-port
qt-port {
lessThan(QT_MINOR_VERSION, 4) {
!win32-*:SUBDIRS += WebKit/qt/Plugins
}
}
SUBDIRS += \
WebCore \
JavaScriptCore/kjs/testkjs.pro
qt-port {
SUBDIRS += WebKit/qt/QtLauncher
!win32-*: SUBDIRS += WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro
}
gtk-port:SUBDIRS += \
WebKitTools/GtkLauncher \
WebKitTools/DumpRenderTree/gtk/DumpRenderTree.pro
|