aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/python.pro
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2019-07-15 12:50:29 +0200
committerDavid Schulz <david.schulz@qt.io>2019-07-17 06:21:23 +0000
commit3213e12ce7411efd05a544645aaa1ecd74e533a2 (patch)
treeae7187904453f530d4660832ff834371905cefaf /src/plugins/python/python.pro
parent2778a5adab13a16f4a6b3cda0980fa3b4f2b3a5e (diff)
rename PythonEditor plugin to Python
The plugin does not only contain a pure editor, but all kind of support for a programming language like project and run support. Change-Id: I1251367c8db2e7a54986415ffc5b860cb210de3c Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/python/python.pro')
-rw-r--r--src/plugins/python/python.pro20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/plugins/python/python.pro b/src/plugins/python/python.pro
new file mode 100644
index 0000000000..8e2b9c3d82
--- /dev/null
+++ b/src/plugins/python/python.pro
@@ -0,0 +1,20 @@
+include(../../qtcreatorplugin.pri)
+
+DEFINES += \
+ PYTHON_LIBRARY
+
+HEADERS += \
+ pythonplugin.h \
+ pythoneditor.h \
+ pythonconstants.h \
+ pythonhighlighter.h \
+ pythonindenter.h \
+ pythonformattoken.h \
+ pythonscanner.h \
+
+SOURCES += \
+ pythonplugin.cpp \
+ pythoneditor.cpp \
+ pythonhighlighter.cpp \
+ pythonindenter.cpp \
+ pythonscanner.cpp