2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "QmlJSEditor"
|
|
|
|
|
|
2016-05-13 12:11:43 +02:00
|
|
|
Depends { name: "Qt"; submodules: ["widgets"] }
|
2014-02-10 13:02:33 +01:00
|
|
|
Depends { name: "LanguageUtils" }
|
|
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
Depends { name: "QmlEditorWidgets" }
|
|
|
|
|
Depends { name: "QmlJS" }
|
|
|
|
|
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
Depends { name: "ProjectExplorer" }
|
|
|
|
|
Depends { name: "QmlJSTools" }
|
|
|
|
|
|
|
|
|
|
files: [
|
|
|
|
|
"qmlexpressionundercursor.cpp",
|
|
|
|
|
"qmlexpressionundercursor.h",
|
|
|
|
|
"qmljsautocompleter.cpp",
|
|
|
|
|
"qmljsautocompleter.h",
|
|
|
|
|
"qmljscompletionassist.cpp",
|
|
|
|
|
"qmljscompletionassist.h",
|
|
|
|
|
"qmljscomponentfromobjectdef.cpp",
|
|
|
|
|
"qmljscomponentfromobjectdef.h",
|
|
|
|
|
"qmljscomponentnamedialog.cpp",
|
|
|
|
|
"qmljscomponentnamedialog.h",
|
|
|
|
|
"qmljscomponentnamedialog.ui",
|
2016-06-18 14:15:02 +02:00
|
|
|
"qmljseditingsettingspage.cpp",
|
|
|
|
|
"qmljseditingsettingspage.h",
|
|
|
|
|
"qmljseditingsettingspage.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmljseditor.cpp",
|
|
|
|
|
"qmljseditor.h",
|
|
|
|
|
"qmljseditor_global.h",
|
|
|
|
|
"qmljseditorconstants.h",
|
2014-01-23 14:00:21 +01:00
|
|
|
"qmljseditordocument.cpp",
|
|
|
|
|
"qmljseditordocument.h",
|
2014-01-23 15:28:06 +01:00
|
|
|
"qmljseditordocument_p.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmljseditorplugin.cpp",
|
|
|
|
|
"qmljseditorplugin.h",
|
|
|
|
|
"qmljsfindreferences.cpp",
|
|
|
|
|
"qmljsfindreferences.h",
|
|
|
|
|
"qmljshighlighter.cpp",
|
|
|
|
|
"qmljshighlighter.h",
|
|
|
|
|
"qmljshoverhandler.cpp",
|
|
|
|
|
"qmljshoverhandler.h",
|
|
|
|
|
"qmljsoutline.cpp",
|
|
|
|
|
"qmljsoutline.h",
|
|
|
|
|
"qmljsoutlinetreeview.cpp",
|
|
|
|
|
"qmljsoutlinetreeview.h",
|
|
|
|
|
"qmljsquickfix.cpp",
|
|
|
|
|
"qmljsquickfix.h",
|
|
|
|
|
"qmljsquickfixassist.cpp",
|
|
|
|
|
"qmljsquickfixassist.h",
|
|
|
|
|
"qmljsquickfixes.cpp",
|
|
|
|
|
"qmljsreuse.cpp",
|
|
|
|
|
"qmljsreuse.h",
|
|
|
|
|
"qmljssemantichighlighter.cpp",
|
|
|
|
|
"qmljssemantichighlighter.h",
|
|
|
|
|
"qmljssemanticinfoupdater.cpp",
|
|
|
|
|
"qmljssemanticinfoupdater.h",
|
2017-11-15 15:01:54 +01:00
|
|
|
"qmljstextmark.cpp",
|
|
|
|
|
"qmljstextmark.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmljswrapinloader.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmljswrapinloader.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmloutlinemodel.cpp",
|
|
|
|
|
"qmloutlinemodel.h",
|
|
|
|
|
"qmltaskmanager.cpp",
|
|
|
|
|
"qmltaskmanager.h",
|
|
|
|
|
"quicktoolbar.cpp",
|
|
|
|
|
"quicktoolbar.h",
|
|
|
|
|
]
|
2012-06-04 16:13:56 +02:00
|
|
|
|
2013-05-24 15:58:33 +02:00
|
|
|
Export {
|
2012-06-04 16:13:56 +02:00
|
|
|
Depends { name: "QmlJSTools" }
|
|
|
|
|
}
|
2012-02-09 14:30:09 +01:00
|
|
|
}
|