summaryrefslogtreecommitdiff
path: root/src/plugins/cppeditor/cppeditor.pro
blob: 604246173b48bdd2e5d445c0f6c8e5824a26cd8d (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
TEMPLATE = lib
TARGET = CppEditor
DEFINES += CPPEDITOR_LIBRARY
include(../../qtcreatorplugin.pri)
include(cppeditor_dependencies.pri)
HEADERS += cppplugin.h \
    cppeditor.h \
    cpphighlighter.h \
    cpphoverhandler.h \
    cppfilewizard.h \
    cppeditorconstants.h \
    cppeditorenums.h \
    cppeditor_global.h \
    cppclasswizard.h \
    cppoutline.h \
    cppinsertdecldef.h \
    cpptypehierarchy.h \
    cppelementevaluator.h \
    cppautocompleter.h \
    cppcompleteswitch.h \
    cppsnippetprovider.h \
    cppinsertqtpropertymembers.h \
    cppquickfixassistant.h \
    cppquickfix.h \
    cppfunctiondecldeflink.h

SOURCES += cppplugin.cpp \
    cppeditor.cpp \
    cpphighlighter.cpp \
    cpphoverhandler.cpp \
    cppfilewizard.cpp \
    cppclasswizard.cpp \
    cppquickfixes.cpp \
    cppoutline.cpp \
    cppinsertdecldef.cpp \
    cpptypehierarchy.cpp \
    cppelementevaluator.cpp \
    cppautocompleter.cpp \
    cppcompleteswitch.cpp \
    cppsnippetprovider.cpp \
    cppinsertqtpropertymembers.cpp \
    cppquickfixassistant.cpp \
    cppquickfix.cpp \
    cppfunctiondecldeflink.cpp

RESOURCES += cppeditor.qrc
OTHER_FILES += CppEditor.mimetypes.xml

equals(TEST, 1) {
    SOURCES += \
        cppquickfix_test.cpp

    DEFINES += SRCDIR=\\\"$$PWD\\\"
}