Installing label templates and multisize measurements table.
This commit is contained in:
parent
9aa0f3f8d1
commit
adce1f28e6
|
@ -69,6 +69,8 @@ Module {
|
|||
readonly property string installDataPath: {
|
||||
if (qbs.targetOS.contains("macos"))
|
||||
return installAppPath + "/" + appTarget + ".app/Contents/Resources"
|
||||
else if (qbs.targetOS.contains("windows"))
|
||||
return installAppPath
|
||||
else
|
||||
return "share/" + appTarget
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import qbs.FileInfo
|
||||
import qbs.File
|
||||
|
||||
VApp {
|
||||
Depends { name: "buildconfig" }
|
||||
|
@ -105,4 +106,69 @@ VApp {
|
|||
return defines;
|
||||
}
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "Multisize tables"
|
||||
prefix: FileInfo.joinPaths(project.sourceDirectory, "src", "app", "share", "tables", "multisize", FileInfo.pathSeparator())
|
||||
files: [
|
||||
"GOST_man_ru.vst"
|
||||
]
|
||||
fileTags: ["multisize_tables"]
|
||||
qbs.install: true
|
||||
qbs.installDir: buildconfig.installDataPath + FileInfo.pathSeparator() + "tables" + FileInfo.pathSeparator() + "multisize"
|
||||
}
|
||||
|
||||
Rule {
|
||||
multiplex: true
|
||||
alwaysRun: true
|
||||
inputs: ["multisize_tables"]
|
||||
outputFileTags: ["testSuit"]
|
||||
outputArtifacts: {
|
||||
var artifactNames = inputs["multisize_tables"].map(function(file){
|
||||
return FileInfo.joinPaths(product.buildDirectory, "tables", "multisize", file.fileName);
|
||||
});
|
||||
var artifacts = artifactNames.map(function(art){
|
||||
var a = {
|
||||
filePath: art,
|
||||
fileTags: ["testSuit"]
|
||||
}
|
||||
return a;
|
||||
});
|
||||
return artifacts;
|
||||
}
|
||||
prepare: {
|
||||
var cmd = new JavaScriptCommand();
|
||||
cmd.description = "Preparing multisize tables";
|
||||
|
||||
var sources = inputs["multisize_tables"].map(function(artifact) {
|
||||
return artifact.filePath;
|
||||
});
|
||||
|
||||
cmd.sources = sources;
|
||||
|
||||
var destination = inputs["multisize_tables"].map(function(file) {
|
||||
return FileInfo.joinPaths(product.buildDirectory, "tables", "multisize", file.fileName);
|
||||
});
|
||||
|
||||
cmd.destination = destination;
|
||||
cmd.sourceCode = function() {
|
||||
for (var i in sources) {
|
||||
File.copy(sources[i], destination[i]);
|
||||
}
|
||||
};
|
||||
return [cmd];
|
||||
}
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "Measurements templates"
|
||||
prefix: FileInfo.joinPaths(project.sourceDirectory, "src", "app", "share", "tables", "templates", FileInfo.pathSeparator())
|
||||
files: [
|
||||
"template_all_measurements.vit",
|
||||
"t_Aldrich_Women.vit"
|
||||
]
|
||||
fileTags: ["measurements_templates"]
|
||||
qbs.install: true
|
||||
qbs.installDir: buildconfig.installDataPath + FileInfo.pathSeparator() + "tables" + FileInfo.pathSeparator() + "templates"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import qbs.FileInfo
|
||||
import qbs.File
|
||||
|
||||
VApp {
|
||||
Depends { name: "buildconfig" }
|
||||
|
@ -186,4 +187,123 @@ VApp {
|
|||
return defines;
|
||||
}
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "Label templates"
|
||||
prefix: FileInfo.joinPaths(project.sourceDirectory, "src", "app", "share", "labels", FileInfo.pathSeparator())
|
||||
files: [
|
||||
"def_pattern_label.xml",
|
||||
"def_piece_label.xml"
|
||||
]
|
||||
fileTags: ["label_templates"]
|
||||
qbs.install: true
|
||||
qbs.installDir: buildconfig.installDataPath + FileInfo.pathSeparator() + "labels"
|
||||
}
|
||||
|
||||
Rule {
|
||||
multiplex: true
|
||||
alwaysRun: true
|
||||
inputs: ["label_templates"]
|
||||
outputFileTags: ["testSuit"]
|
||||
outputArtifacts: {
|
||||
var artifactNames = inputs["label_templates"].map(function(file){
|
||||
return FileInfo.joinPaths(product.buildDirectory, "labels", file.fileName);
|
||||
});
|
||||
var artifacts = artifactNames.map(function(art){
|
||||
var a = {
|
||||
filePath: art,
|
||||
fileTags: ["testSuit"]
|
||||
}
|
||||
return a;
|
||||
});
|
||||
return artifacts;
|
||||
}
|
||||
prepare: {
|
||||
var cmd = new JavaScriptCommand();
|
||||
cmd.description = "Preparing default labels";
|
||||
|
||||
var sources = inputs["label_templates"].map(function(artifact) {
|
||||
return artifact.filePath;
|
||||
});
|
||||
|
||||
cmd.sources = sources;
|
||||
|
||||
var destination = inputs["label_templates"].map(function(file) {
|
||||
return FileInfo.joinPaths(product.buildDirectory, "labels", file.fileName);
|
||||
});
|
||||
|
||||
cmd.destination = destination;
|
||||
cmd.sourceCode = function() {
|
||||
for (var i in sources) {
|
||||
File.copy(sources[i], destination[i]);
|
||||
}
|
||||
};
|
||||
return [cmd];
|
||||
}
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "Multisize tables"
|
||||
prefix: FileInfo.joinPaths(project.sourceDirectory, "src", "app", "share", "tables", "multisize", FileInfo.pathSeparator())
|
||||
files: [
|
||||
"GOST_man_ru.vst"
|
||||
]
|
||||
fileTags: ["multisize_tables"]
|
||||
qbs.install: true
|
||||
qbs.installDir: buildconfig.installDataPath + FileInfo.pathSeparator() + "tables" + FileInfo.pathSeparator() + "multisize"
|
||||
}
|
||||
|
||||
Rule {
|
||||
multiplex: true
|
||||
alwaysRun: true
|
||||
inputs: ["multisize_tables"]
|
||||
outputFileTags: ["testSuit"]
|
||||
outputArtifacts: {
|
||||
var artifactNames = inputs["multisize_tables"].map(function(file){
|
||||
return FileInfo.joinPaths(product.buildDirectory, "tables", "multisize", file.fileName);
|
||||
});
|
||||
var artifacts = artifactNames.map(function(art){
|
||||
var a = {
|
||||
filePath: art,
|
||||
fileTags: ["testSuit"]
|
||||
}
|
||||
return a;
|
||||
});
|
||||
return artifacts;
|
||||
}
|
||||
prepare: {
|
||||
var cmd = new JavaScriptCommand();
|
||||
cmd.description = "Preparing multisize tables";
|
||||
|
||||
var sources = inputs["multisize_tables"].map(function(artifact) {
|
||||
return artifact.filePath;
|
||||
});
|
||||
|
||||
cmd.sources = sources;
|
||||
|
||||
var destination = inputs["multisize_tables"].map(function(file) {
|
||||
return FileInfo.joinPaths(product.buildDirectory, "tables", "multisize", file.fileName);
|
||||
});
|
||||
|
||||
cmd.destination = destination;
|
||||
cmd.sourceCode = function() {
|
||||
for (var i in sources) {
|
||||
File.copy(sources[i], destination[i]);
|
||||
}
|
||||
};
|
||||
return [cmd];
|
||||
}
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "Measurements templates"
|
||||
prefix: FileInfo.joinPaths(project.sourceDirectory, "src", "app", "share", "tables", "templates", FileInfo.pathSeparator())
|
||||
files: [
|
||||
"template_all_measurements.vit",
|
||||
"t_Aldrich_Women.vit"
|
||||
]
|
||||
fileTags: ["measurements_templates"]
|
||||
qbs.install: true
|
||||
qbs.installDir: buildconfig.installDataPath + FileInfo.pathSeparator() + "tables" + FileInfo.pathSeparator() + "templates"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user