2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "QmlJSEditor"
|
|
|
|
|
|
2012-06-19 15:36:27 +08:00
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "script"] }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
Depends { name: "ProjectExplorer" }
|
|
|
|
|
Depends { name: "QmlJSTools" }
|
|
|
|
|
Depends { name: "QmlJS" }
|
|
|
|
|
Depends { name: "LanguageUtils" }
|
2012-02-27 21:09:42 +02:00
|
|
|
Depends { name: "Find" }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "QmlEditorWidgets" }
|
|
|
|
|
Depends { name: "CPlusPlus" }
|
|
|
|
|
|
|
|
|
|
Depends { name: "cpp" }
|
|
|
|
|
cpp.defines: base.concat(["QT_CREATOR"])
|
|
|
|
|
cpp.includePaths: [
|
|
|
|
|
".",
|
|
|
|
|
"..",
|
|
|
|
|
"../../libs",
|
|
|
|
|
buildDirectory
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
files: [
|
2012-06-19 15:36:27 +08:00
|
|
|
"qmljseditor.qrc",
|
2012-02-09 14:30:09 +01:00
|
|
|
"quicktoolbarsettingspage.ui",
|
|
|
|
|
"QmlJSEditor.mimetypes.xml",
|
|
|
|
|
"jsfilewizard.cpp",
|
|
|
|
|
"jsfilewizard.h",
|
|
|
|
|
"qmlexpressionundercursor.cpp",
|
|
|
|
|
"qmlexpressionundercursor.h",
|
|
|
|
|
"qmlfilewizard.cpp",
|
|
|
|
|
"qmlfilewizard.h",
|
|
|
|
|
"qmljsautocompleter.cpp",
|
|
|
|
|
"qmljsautocompleter.h",
|
|
|
|
|
"qmljscompletionassist.cpp",
|
|
|
|
|
"qmljscompletionassist.h",
|
|
|
|
|
"qmljscomponentfromobjectdef.cpp",
|
|
|
|
|
"qmljscomponentfromobjectdef.h",
|
|
|
|
|
"qmljscomponentnamedialog.cpp",
|
|
|
|
|
"qmljscomponentnamedialog.h",
|
|
|
|
|
"qmljscomponentnamedialog.ui",
|
|
|
|
|
"qmljseditor.cpp",
|
|
|
|
|
"qmljseditor.h",
|
|
|
|
|
"qmljseditor_global.h",
|
|
|
|
|
"qmljseditoractionhandler.cpp",
|
|
|
|
|
"qmljseditoractionhandler.h",
|
|
|
|
|
"qmljseditorconstants.h",
|
|
|
|
|
"qmljseditoreditable.cpp",
|
|
|
|
|
"qmljseditoreditable.h",
|
|
|
|
|
"qmljseditorfactory.cpp",
|
|
|
|
|
"qmljseditorfactory.h",
|
|
|
|
|
"qmljseditorplugin.cpp",
|
|
|
|
|
"qmljseditorplugin.h",
|
|
|
|
|
"qmljsfindreferences.cpp",
|
|
|
|
|
"qmljsfindreferences.h",
|
|
|
|
|
"qmljshighlighter.cpp",
|
|
|
|
|
"qmljshighlighter.h",
|
|
|
|
|
"qmljshoverhandler.cpp",
|
|
|
|
|
"qmljshoverhandler.h",
|
|
|
|
|
"qmljsoutline.cpp",
|
|
|
|
|
"qmljsoutline.h",
|
|
|
|
|
"qmljsoutlinetreeview.cpp",
|
|
|
|
|
"qmljsoutlinetreeview.h",
|
|
|
|
|
"qmljspreviewrunner.cpp",
|
|
|
|
|
"qmljspreviewrunner.h",
|
|
|
|
|
"qmljsquickfix.cpp",
|
|
|
|
|
"qmljsquickfix.h",
|
|
|
|
|
"qmljsquickfixassist.cpp",
|
|
|
|
|
"qmljsquickfixassist.h",
|
|
|
|
|
"qmljsquickfixes.cpp",
|
|
|
|
|
"qmljsreuse.cpp",
|
|
|
|
|
"qmljsreuse.h",
|
|
|
|
|
"qmljssemantichighlighter.cpp",
|
|
|
|
|
"qmljssemantichighlighter.h",
|
|
|
|
|
"qmljssemanticinfoupdater.cpp",
|
|
|
|
|
"qmljssemanticinfoupdater.h",
|
|
|
|
|
"qmljssnippetprovider.cpp",
|
|
|
|
|
"qmljssnippetprovider.h",
|
|
|
|
|
"qmljswrapinloader.cpp",
|
|
|
|
|
"qmloutlinemodel.cpp",
|
|
|
|
|
"qmloutlinemodel.h",
|
|
|
|
|
"qmltaskmanager.cpp",
|
|
|
|
|
"qmltaskmanager.h",
|
|
|
|
|
"quicktoolbar.cpp",
|
|
|
|
|
"quicktoolbar.h",
|
|
|
|
|
"quicktoolbarsettingspage.cpp",
|
|
|
|
|
"quicktoolbarsettingspage.h",
|
|
|
|
|
"qmljswrapinloader.h",
|
|
|
|
|
"images/qmlfile.png"
|
|
|
|
|
]
|
2012-06-04 16:13:56 +02:00
|
|
|
|
|
|
|
|
ProductModule {
|
|
|
|
|
Depends { name: "QmlJSTools" }
|
|
|
|
|
}
|
2012-02-09 14:30:09 +01:00
|
|
|
}
|
|
|
|
|
|