forked from qt-creator/qt-creator
Handling of parsing has slightly changed. The parser now uses simple states to be capable of postponing triggered parses if there is already a parsing in progress. Furthermore the parser now waits for the current project to be completely scanned. Change-Id: I6d4968d28194ba8d23d3a0ee6ab454d81a549e67 Reviewed-by: Andre Poenitz <andre.poenitz@theqtcompany.com>
64 lines
1.3 KiB
Prolog
64 lines
1.3 KiB
Prolog
TARGET = AutoTest
|
|
TEMPLATE = lib
|
|
|
|
PROVIDER = Digia
|
|
|
|
include(../../qtcreatorplugin.pri)
|
|
include(autotest_dependencies.pri)
|
|
|
|
DEFINES += AUTOTEST_LIBRARY
|
|
|
|
SOURCES += \
|
|
testtreeview.cpp \
|
|
testtreemodel.cpp \
|
|
testtreeitem.cpp \
|
|
testvisitor.cpp \
|
|
testinfo.cpp \
|
|
testcodeparser.cpp \
|
|
autotestplugin.cpp \
|
|
testrunner.cpp \
|
|
testconfiguration.cpp \
|
|
testresult.cpp \
|
|
testresultspane.cpp \
|
|
testresultmodel.cpp \
|
|
testresultdelegate.cpp \
|
|
testtreeitemdelegate.cpp \
|
|
testsettings.cpp \
|
|
testsettingspage.cpp \
|
|
testnavigationwidget.cpp \
|
|
testxmloutputreader.cpp
|
|
|
|
HEADERS += \
|
|
testtreeview.h \
|
|
testtreemodel.h \
|
|
testtreeitem.h \
|
|
testvisitor.h \
|
|
testinfo.h \
|
|
testcodeparser.h \
|
|
autotestplugin.h \
|
|
autotest_global.h \
|
|
autotestconstants.h \
|
|
testrunner.h \
|
|
testconfiguration.h \
|
|
testresult.h \
|
|
testresultspane.h \
|
|
testresultmodel.h \
|
|
testresultdelegate.h \
|
|
testtreeitemdelegate.h \
|
|
testsettings.h \
|
|
testsettingspage.h \
|
|
testnavigationwidget.h \
|
|
testxmloutputreader.h
|
|
|
|
RESOURCES += \
|
|
autotest.qrc
|
|
|
|
FORMS += \
|
|
testsettingspage.ui
|
|
|
|
equals(TEST, 1) {
|
|
HEADERS += autotestunittests.h
|
|
SOURCES += autotestunittests.cpp
|
|
RESOURCES += autotestunittests.qrc
|
|
}
|