forked from qt-creator/qt-creator
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
100
src/plugins/qmljseditor/qmljseditor.qbs
Normal file
100
src/plugins/qmljseditor/qmljseditor.qbs
Normal file
@@ -0,0 +1,100 @@
|
||||
import qbs.base 1.0
|
||||
|
||||
import "../QtcPlugin.qbs" as QtcPlugin
|
||||
|
||||
QtcPlugin {
|
||||
name: "QmlJSEditor"
|
||||
|
||||
Depends { name: "qt"; submodules: ['gui'] }
|
||||
Depends { name: "utils" }
|
||||
Depends { name: "extensionsystem" }
|
||||
Depends { name: "aggregation" }
|
||||
Depends { name: "Core" }
|
||||
Depends { name: "TextEditor" }
|
||||
Depends { name: "ProjectExplorer" }
|
||||
Depends { name: "QmlJSTools" }
|
||||
Depends { name: "QmlJS" }
|
||||
Depends { name: "LanguageUtils" }
|
||||
Depends { name: "find" }
|
||||
Depends { name: "QmlEditorWidgets" }
|
||||
Depends { name: "CPlusPlus" }
|
||||
|
||||
Depends { name: "cpp" }
|
||||
cpp.defines: base.concat(["QT_CREATOR"])
|
||||
cpp.includePaths: [
|
||||
".",
|
||||
"..",
|
||||
"../../libs",
|
||||
buildDirectory
|
||||
]
|
||||
|
||||
files: [
|
||||
"qmljseditor.qrc",
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user