forked from qt-creator/qt-creator
Conflicts: doc/qtcreator.qdoc src/plugins/projectexplorer/taskwindow.h src/plugins/qmldesigner/designercore/model/modelmerger.cpp src/plugins/qmljseditor/qmljshoverhandler.h src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationwidget.cpp src/plugins/subversion/subversionplugin.cpp
42 lines
992 B
Prolog
42 lines
992 B
Prolog
TEMPLATE = lib
|
|
TARGET = QmlJSEditor
|
|
include(../../qtcreatorplugin.pri)
|
|
include(qmljseditor_dependencies.pri)
|
|
|
|
DEFINES += \
|
|
QMLJSEDITOR_LIBRARY \
|
|
QT_CREATOR
|
|
|
|
HEADERS += \
|
|
qmljscodecompletion.h \
|
|
qmljseditor.h \
|
|
qmljseditor_global.h \
|
|
qmljseditoractionhandler.h \
|
|
qmljseditorconstants.h \
|
|
qmljseditorfactory.h \
|
|
qmljseditorplugin.h \
|
|
qmlexpressionundercursor.h \
|
|
qmlfilewizard.h \
|
|
qmljshighlighter.h \
|
|
qmljshoverhandler.h \
|
|
qmljsmodelmanager.h \
|
|
qmljspreviewrunner.h \
|
|
qmljsquickfix.h
|
|
|
|
SOURCES += \
|
|
qmljscodecompletion.cpp \
|
|
qmljseditor.cpp \
|
|
qmljseditoractionhandler.cpp \
|
|
qmljseditorfactory.cpp \
|
|
qmljseditorplugin.cpp \
|
|
qmlexpressionundercursor.cpp \
|
|
qmlfilewizard.cpp \
|
|
qmljshighlighter.cpp \
|
|
qmljshoverhandler.cpp \
|
|
qmljsmodelmanager.cpp \
|
|
qmljspreviewrunner.cpp \
|
|
qmljsquickfix.cpp
|
|
|
|
RESOURCES += qmljseditor.qrc
|
|
OTHER_FILES += QmlJSEditor.pluginspec QmlJSEditor.mimetypes.xml
|