aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/autotest.pro
blob: a751723017de3dda6ef5b18188cdf61478cbf688 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
TARGET = AutoTest
TEMPLATE = lib

include(../../qtcreatorplugin.pri)

DEFINES += AUTOTEST_LIBRARY

SOURCES += \
    autotestplugin.cpp \
    itestframework.cpp \
    itestparser.cpp \
    projectsettingswidget.cpp \
    testcodeparser.cpp \
    testconfiguration.cpp \
    testeditormark.cpp \
    testframeworkmanager.cpp \
    testnavigationwidget.cpp \
    testoutputreader.cpp \
    testprojectsettings.cpp \
    testresult.cpp \
    testresultdelegate.cpp \
    testresultmodel.cpp \
    testresultspane.cpp \
    testrunner.cpp \
    testsettings.cpp \
    testsettingspage.cpp \
    testtreeitem.cpp \
    testtreeitemdelegate.cpp \
    testtreemodel.cpp \
    testtreeview.cpp \
    catch/catchcodeparser.cpp \
    catch/catchconfiguration.cpp \
    catch/catchframework.cpp \
    catch/catchoutputreader.cpp \
    catch/catchresult.cpp \
    catch/catchtestparser.cpp \
    catch/catchtestsettings.cpp \
    catch/catchtestsettingspage.cpp \
    catch/catchtreeitem.cpp \
    gtest/gtestconfiguration.cpp \
    gtest/gtestparser.cpp \
    gtest/gtesttreeitem.cpp \
    gtest/gtestresult.cpp \
    gtest/gtestoutputreader.cpp \
    gtest/gtestvisitors.cpp \
    gtest/gtestframework.cpp \
    gtest/gtestsettings.cpp \
    gtest/gtestsettingspage.cpp \
    gtest/gtest_utils.cpp \
    qtest/qttesttreeitem.cpp \
    qtest/qttestvisitors.cpp \
    qtest/qttestconfiguration.cpp \
    qtest/qttestoutputreader.cpp \
    qtest/qttestresult.cpp \
    qtest/qttestparser.cpp \
    qtest/qttestframework.cpp \
    qtest/qttestsettings.cpp \
    qtest/qttestsettingspage.cpp \
    qtest/qttest_utils.cpp \
    quick/quicktestconfiguration.cpp \
    quick/quicktestparser.cpp \
    quick/quicktesttreeitem.cpp \
    quick/quicktestvisitors.cpp \
    quick/quicktestframework.cpp \
    quick/quicktest_utils.cpp \
    boost/boostcodeparser.cpp \
    boost/boosttestframework.cpp \
    boost/boosttesttreeitem.cpp \
    boost/boosttestparser.cpp \
    boost/boosttestconfiguration.cpp \
    boost/boosttestoutputreader.cpp \
    boost/boosttestresult.cpp \
    boost/boosttestsettings.cpp \
    boost/boosttestsettingspage.cpp

HEADERS += \
    autotest_global.h \
    autotestconstants.h \
    autotesticons.h \
    autotestplugin.h \
    iframeworksettings.h \
    itemdatacache.h \
    itestframework.h \
    itestparser.h \
    projectsettingswidget.h \
    testcodeparser.h \
    testconfiguration.h \
    testeditormark.h \
    testframeworkmanager.h \
    testnavigationwidget.h \
    testoutputreader.h \
    testprojectsettings.h \
    testresult.h \
    testresultdelegate.h \
    testresultmodel.h \
    testresultspane.h \
    testrunconfiguration.h \
    testrunner.h \
    testsettings.h \
    testsettingspage.h \
    testtreeitem.h \
    testtreeitemdelegate.h \
    testtreemodel.h \
    testtreeview.h \
    catch/catchcodeparser.h \
    catch/catchconfiguration.h \
    catch/catchframework.h \
    catch/catchoutputreader.h \
    catch/catchresult.h \
    catch/catchtestparser.h \
    catch/catchtestsettings.h \
    catch/catchtestsettingspage.h \
    catch/catchtreeitem.h \
    gtest/gtestconfiguration.h \
    gtest/gtestparser.h \
    gtest/gtesttreeitem.h \
    gtest/gtestoutputreader.h \
    gtest/gtestresult.h \
    gtest/gtest_utils.h \
    gtest/gtestvisitors.h \
    gtest/gtestframework.h \
    gtest/gtestsettings.h \
    gtest/gtestsettingspage.h \
    gtest/gtestconstants.h \
    qtest/qttesttreeitem.h \
    qtest/qttest_utils.h \
    qtest/qttestresult.h \
    qtest/qttestvisitors.h \
    qtest/qttestconfiguration.h \
    qtest/qttestoutputreader.h \
    qtest/qttestparser.h \
    qtest/qttestframework.h \
    qtest/qttestsettings.h \
    qtest/qttestsettingspage.h \
    qtest/qttestconstants.h \
    quick/quicktestconfiguration.h \
    quick/quicktestparser.h \
    quick/quicktesttreeitem.h \
    quick/quicktest_utils.h \
    quick/quicktestvisitors.h \
    quick/quicktestframework.h \
    boost/boostcodeparser.h \
    boost/boosttestframework.h \
    boost/boosttestconstants.h \
    boost/boosttesttreeitem.h \
    boost/boosttestparser.h \
    boost/boosttestconfiguration.h \
    boost/boosttestoutputreader.h \
    boost/boosttestresult.h \
    boost/boosttestsettingspage.h \
    boost/boosttestsettings.h

RESOURCES += \
    autotest.qrc

FORMS += \
    testsettingspage.ui \
    boost/boosttestsettingspage.ui \
    catch/catchtestsettingspage.ui \
    qtest/qttestsettingspage.ui \
    gtest/gtestsettingspage.ui

equals(TEST, 1) {
    HEADERS += autotestunittests.h
    SOURCES += autotestunittests.cpp
    RESOURCES += autotestunittests.qrc
}