forked from qt-creator/qt-creator
The _LIBRARY defines for plugins should consist of the plugin name plus the suffix _LIBRARY to make it possible to generate those automatically. Change-Id: Icafc9bce876d77521b47d815c94e7df6da061a51 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
44 lines
1.1 KiB
Prolog
44 lines
1.1 KiB
Prolog
include(../../qtcreatorplugin.pri)
|
|
include(pythoneditor_dependencies.pri)
|
|
|
|
DEFINES += \
|
|
PYTHONEDITOR_LIBRARY
|
|
|
|
OTHER_FILES += PythonEditor.pluginspec.in \
|
|
pythoneditor.mimetypes.xml
|
|
|
|
RESOURCES += \
|
|
pythoneditorplugin.qrc
|
|
|
|
HEADERS += \
|
|
pythoneditor_global.h \
|
|
pythoneditorplugin.h \
|
|
pythoneditorfactory.h \
|
|
pythoneditor.h \
|
|
pythoneditorwidget.h \
|
|
pythoneditorconstants.h \
|
|
wizard/pythonfilewizard.h \
|
|
wizard/pythonclasswizard.h \
|
|
wizard/pythonclassnamepage.h \
|
|
wizard/pythonclasswizarddialog.h \
|
|
wizard/pythonsourcegenerator.h \
|
|
tools/pythonhighlighter.h \
|
|
tools/pythonindenter.h \
|
|
tools/lexical/pythonformattoken.h \
|
|
tools/lexical/pythonscanner.h \
|
|
tools/lexical/sourcecodestream.h
|
|
|
|
SOURCES += \
|
|
pythoneditorplugin.cpp \
|
|
pythoneditorfactory.cpp \
|
|
pythoneditor.cpp \
|
|
pythoneditorwidget.cpp \
|
|
wizard/pythonfilewizard.cpp \
|
|
wizard/pythonclasswizarddialog.cpp \
|
|
wizard/pythonclasswizard.cpp \
|
|
wizard/pythonclassnamepage.cpp \
|
|
wizard/pythonsourcegenerator.cpp \
|
|
tools/pythonhighlighter.cpp \
|
|
tools/pythonindenter.cpp \
|
|
tools/lexical/pythonscanner.cpp
|