blob: eb5e38916a831f48b62caed1cfe07eb080f49b60 (
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
|
include(../../qtcreatorplugin.pri)
HEADERS += todoplugin.h \
keyword.h \
constants.h \
todooutputpane.h \
todoitem.h \
settings.h \
optionspage.h \
optionsdialog.h\
keyworddialog.h \
todoitemsprovider.h \
todoitemsmodel.h \
todoitemsscanner.h \
cpptodoitemsscanner.h \
qmljstodoitemsscanner.h \
lineparser.h \
todooutputtreeview.h
SOURCES += todoplugin.cpp \
keyword.cpp \
todooutputpane.cpp \
optionspage.cpp \
settings.cpp \
optionsdialog.cpp \
keyworddialog.cpp \
todoitemsprovider.cpp \
todoitemsmodel.cpp \
todoitemsscanner.cpp \
cpptodoitemsscanner.cpp \
qmljstodoitemsscanner.cpp \
lineparser.cpp \
todooutputtreeview.cpp
RESOURCES += \
todoplugin.qrc
FORMS += \
optionsdialog.ui \
keyworddialog.ui
|