summaryrefslogtreecommitdiff
path: root/Source/WebKit/qt/tests/tests.pri
blob: c4a5818f998a3a1e7c2d4ecbeb66ce9890238436 (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
TEMPLATE = app

VPATH += $$_PRO_FILE_PWD_
TARGET = tst_$$TARGET

# Load mobilityconfig if Qt Mobility is available
load(mobilityconfig, true)
contains(MOBILITY_CONFIG, multimedia) {
    # This define is used by tests depending on Qt Multimedia
    DEFINES -= WTF_USE_QT_MULTIMEDIA=0
    DEFINES += WTF_USE_QT_MULTIMEDIA=1
}

SOURCES += $${TARGET}.cpp
INCLUDEPATH += \
    $$PWD \
    $$PWD/../Api

QT += testlib network
haveQt(5): QT += widgets

CONFIG += qtwebkit

haveQt(5) {
    QT += declarative quick1
} else {
    contains(QT_CONFIG, declarative): QT += declarative
}

# This define is used by some tests to look up resources in the source tree
DEFINES += TESTS_SOURCE_DIR=\\\"$$PWD/\\\"