blob: f758f758b1e453d6710e7d1df3139d046cef9a04 (
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
|
include(../../qtcreatorplugin.pri)
DEFINES += \
PYTHONEDITOR_LIBRARY
RESOURCES += \
pythoneditorplugin.qrc
HEADERS += \
pythoneditorplugin.h \
pythoneditor.h \
pythoneditorconstants.h \
tools/pythonhighlighter.h \
tools/pythonindenter.h \
tools/lexical/pythonformattoken.h \
tools/lexical/pythonscanner.h \
tools/lexical/sourcecodestream.h
SOURCES += \
pythoneditorplugin.cpp \
pythoneditor.cpp \
tools/pythonhighlighter.cpp \
tools/pythonindenter.cpp \
tools/lexical/pythonscanner.cpp
|