summaryrefslogtreecommitdiff
path: root/plugins/autotest/autotest.pro
blob: df61df9fe6530ffa43bad71421eed03f850b102d (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
TARGET = AutoTest
TEMPLATE = lib

PROVIDER = Digia

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

DEFINES += AUTOTEST_LIBRARY

SOURCES += \
    squishsettings.cpp \
    squishsettingspage.cpp \
    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 \
    testsquishfilehandler.cpp \
    opensquishsuitesdialog.cpp \
    testsquishutils.cpp \
    testsquishtools.cpp \
    squishxmloutputhandler.cpp

HEADERS += \
    squishsettings.h \
    squishsettingspage.h \
    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 \
    testsquishfilehandler.h \
    opensquishsuitesdialog.h \
    testsquishutils.h \
    testsquishtools.h \
    squishxmloutputhandler.h

RESOURCES += \
    autotest.qrc

FORMS += \
    squishsettingspage.ui \
    testsettingspage.ui \
    opensquishsuitesdialog.ui

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