forked from qt-creator/qt-creator
* Remove Qt4 support. * Remove some UI options that did not do anything in the original wizard Change-Id: I9647cbc6cd0958a02df5b2fe480b9c8069249521 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
25 lines
550 B
Prolog
25 lines
550 B
Prolog
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
|