Update QML typeinfo for qbs files

Change-Id: I410db00dde848a6fab9078ff701fe3666b42dcf3
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
Christian Kandeler
2018-02-01 14:39:21 +01:00
parent eb1f85a971
commit 09f8bd3ac0
2 changed files with 29 additions and 7 deletions

View File

@@ -1,14 +1,32 @@
{ {
"name": "qbs", "name": "qbs",
"searchPaths": [ "searchPaths": [
"$(QBS_IMPORT_PATH)"], "$(QBS_IMPORT_PATH)"
],
"installPaths": [ "installPaths": [
"$(QBS_IMPORT_PATH)"], "$(QBS_IMPORT_PATH)"
],
"implicitImports": [ "implicitImports": [
"__javascriptQt5__"], "__javascriptQt5__"
],
"supportedImports": [ "supportedImports": [
"qbs.base 1.0", "qbs",
"qbs 1.0", "qbs.BinaryFile",
"qbs.fileinfo 1.0", "qbs.BundleTools",
"qbs.probe 1.0"] "qbs.DarwinTools",
"qbs.Environment",
"qbs.File",
"qbs.FileInfo",
"qbs.ModUtils",
"qbs.PathTools",
"qbs.Probes",
"qbs.Process",
"qbs.PropertyList",
"qbs.TemporaryDir",
"qbs.TextFile",
"qbs.UnixUtils",
"qbs.Utilities",
"qbs.WindowsUtils",
"qbs.Xml"
]
} }

View File

@@ -60,6 +60,7 @@ Module {
Property { name: "fileTags"; type: "string"; isList: true } Property { name: "fileTags"; type: "string"; isList: true }
Property { name: "fileTagsFilter"; type: "string"; isList: true } Property { name: "fileTagsFilter"; type: "string"; isList: true }
Property { name: "files"; type: "string"; isList: true } Property { name: "files"; type: "string"; isList: true }
Property { name: "filesAreTargets"; type: "bool" }
Property { name: "name"; type: "string" } Property { name: "name"; type: "string" }
Property { name: "overrideTags"; type: "bool" } Property { name: "overrideTags"; type: "bool" }
Property { name: "prefix"; type: "string" } Property { name: "prefix"; type: "string" }
@@ -72,6 +73,7 @@ Module {
Property { name: "condition"; type: "bool" } Property { name: "condition"; type: "bool" }
Property { name: "name"; type: "string" } Property { name: "name"; type: "string" }
Property { name: "present"; type: "bool" } Property { name: "present"; type: "bool" }
Property { name: "priority"; type: "int" }
Property { name: "setupBuildEnvironment"; type: "QVariant" } Property { name: "setupBuildEnvironment"; type: "QVariant" }
Property { name: "setupRunEnvironment"; type: "QVariant" } Property { name: "setupRunEnvironment"; type: "QVariant" }
Property { name: "validate"; type: "bool" } Property { name: "validate"; type: "bool" }
@@ -187,6 +189,7 @@ Module {
name: "SubProject" name: "SubProject"
exports: [ "qbs/SubProject 1.0" ] exports: [ "qbs/SubProject 1.0" ]
prototype: "QQuickItem" prototype: "QQuickItem"
Property { name: "condition"; type: "bool" }
Property { name: "filePath"; type: "string" } Property { name: "filePath"; type: "string" }
Property { name: "inheritProperties"; type: "bool" } Property { name: "inheritProperties"; type: "bool" }
} }
@@ -201,3 +204,4 @@ Module {
Property { name: "prepare"; type: "QVariant" } Property { name: "prepare"; type: "QVariant" }
} }
} }