bf3c84f718
This removes various remains of historical test tools, and the entire tests/arthur directory. The living parts are now: tests/auto/lancelot - including the suite of qps scripts. The script engine now lives here. tests/baselineserver - moved to toplevel since not arthur-specific. tests/manual/lance - for manual running and editing of qps scripts. Change-Id: I7c7f5df9197f4984a918dd1f9b31f42ee80d6152 Reviewed-on: http://codereview.qt.nokia.com/895 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com>
27 lines
645 B
Prolog
27 lines
645 B
Prolog
LANCELOT_DIR = $$PWD/../../auto/lancelot
|
|
CONFIG+=console moc
|
|
TEMPLATE = app
|
|
INCLUDEPATH += . $$LANCELOT_DIR
|
|
QT += core-private gui-private
|
|
|
|
# Input
|
|
HEADERS += widgets.h \
|
|
interactivewidget.h \
|
|
$$LANCELOT_DIR/paintcommands.h
|
|
SOURCES += interactivewidget.cpp \
|
|
main.cpp \
|
|
$$LANCELOT_DIR/paintcommands.cpp
|
|
RESOURCES += icons.qrc \
|
|
$$LANCELOT_DIR/images.qrc
|
|
|
|
contains(QT_CONFIG, opengl)|contains(QT_CONFIG, opengles1)|contains(QT_CONFIG, opengles2):QT += opengl
|
|
|
|
symbian*: {
|
|
testData.files = $$QT_BUILD_TREE/tests/auto/lancelot/scripts
|
|
testData.path = .
|
|
DEPLOYMENT += testData
|
|
}
|
|
|
|
|
|
|