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 36 37 38 39
|
TEMPLATE = app
CONFIG -= app_bundle
VPATH += $$_PRO_FILE_PWD_
# Add the tst_ prefix, In QTDIR_build it's done by qttest_p4.prf
CONFIG(QTDIR_build) { load(qttest_p4) }
ELSE { 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
include(../../../WebKit.pri)
QT += testlib network
contains(QT_CONFIG, declarative): QT += declarative
QMAKE_RPATHDIR = $$OUTPUT_DIR/lib $$QMAKE_RPATHDIR
symbian {
TARGET.CAPABILITY = ReadUserData WriteUserData NetworkServices WriteDeviceData
}
# Use the Qt Mobile theme if it is in the CONFIG
use_qt_mobile_theme: DEFINES += WTF_USE_QT_MOBILE_THEME=1
# This define is used by some tests to look up resources in the source tree
!symbian: DEFINES += TESTS_SOURCE_DIR=\\\"$$PWD/\\\"
DEFINES -= QT_ASCII_CAST_WARNINGS
|