aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/cppeditor.pro
blob: 74b1daf63b3ced72aa911454dbca2fd19b71347d (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
DEFINES += CPPEDITOR_LIBRARY
include(../../qtcreatorplugin.pri)

HEADERS += \
    cppautocompleter.h \
    cppcodemodelinspectordialog.h \
    cppdocumentationcommenthelper.h \
    cppeditor.h \
    cppeditor_global.h \
    cppeditordocument.h \
    cppeditorconstants.h \
    cppeditorenums.h \
    cppeditorplugin.h \
    cppeditorwidget.h \
    cppfunctiondecldeflink.h \
    cpphighlighter.h \
    cppparsecontext.h \
    cppincludehierarchy.h \
    cppinsertvirtualmethods.h \
    cpplocalrenaming.h \
    cppminimizableinfobars.h \
    cppoutline.h \
    cpppreprocessordialog.h \
    cppquickfix.h \
    cppquickfixassistant.h \
    cppquickfixes.h \
    cpptypehierarchy.h \
    cppuseselectionsupdater.h \
    resourcepreviewhoverhandler.h

SOURCES += \
    cppautocompleter.cpp \
    cppcodemodelinspectordialog.cpp \
    cppdocumentationcommenthelper.cpp \
    cppeditor.cpp \
    cppeditordocument.cpp \
    cppeditorplugin.cpp \
    cppeditorwidget.cpp \
    cppfunctiondecldeflink.cpp \
    cpphighlighter.cpp \
    cppparsecontext.cpp \
    cppincludehierarchy.cpp \
    cppinsertvirtualmethods.cpp \
    cpplocalrenaming.cpp \
    cppminimizableinfobars.cpp \
    cppoutline.cpp \
    cpppreprocessordialog.cpp \
    cppquickfix.cpp \
    cppquickfixassistant.cpp \
    cppquickfixes.cpp \
    cpptypehierarchy.cpp \
    cppuseselectionsupdater.cpp \
    resourcepreviewhoverhandler.cpp

FORMS += \
    cpppreprocessordialog.ui \
    cppcodemodelinspectordialog.ui

RESOURCES += \
    cppeditor.qrc

equals(TEST, 1) {
    HEADERS += \
        cppeditortestcase.h \
        cppdoxygen_test.h \
        cppquickfix_test.h
    SOURCES += \
        cppdoxygen_test.cpp \
        cppeditortestcase.cpp \
        cppincludehierarchy_test.cpp \
        cppquickfix_test.cpp \
        cppuseselections_test.cpp \
        fileandtokenactions_test.cpp \
        followsymbol_switchmethoddecldef_test.cpp
    DEFINES += SRCDIR=\\\"$$PWD\\\"
}