blob: 6c2e872bf1c551e62c7eb919e368784a6e2fab25 (
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
|
include(../../qtcreatorplugin.pri)
DEFINES += \
PYTHON_LIBRARY
HEADERS += \
pythonconstants.h \
pythoneditor.h \
pythonformattoken.h \
pythonhighlighter.h \
pythonindenter.h \
pythonlanguageclient.h \
pythonplugin.h \
pythonproject.h \
pythonrunconfiguration.h \
pythonscanner.h \
pythonsettings.h \
pythonutils.h \
SOURCES += \
pythoneditor.cpp \
pythonhighlighter.cpp \
pythonindenter.cpp \
pythonlanguageclient.cpp \
pythonplugin.cpp \
pythonproject.cpp \
pythonrunconfiguration.cpp \
pythonscanner.cpp \
pythonsettings.cpp \
pythonutils.cpp \
RESOURCES += \
python.qrc
|