blob: 507d9303003827a9a5c7e79ecbf2e52e0a5f0b66 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
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
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
RESOURCES += \
autotest.qrc
FORMS += \
testsettingspage.ui
|