1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
import qbs.File
import qbs.TextFile
import qbs.Xml
import qbs.FileInfo
Project {
Product {
name: "HelloWorld"
type: "application"
consoleApplication: true
Group {
files: ["main.cpp"]
fileTags: ["main"]
}
Depends { name: "cpp" }
Rule {
// no inputs -> just a generator
multiplex: true
Artifact {
filePath: "foo.txt"
fileTags: "text"
}
prepare: {
var cmd = new JavaScriptCommand();
cmd.description = "generating foo.txt";
cmd.highlight = "linker";
cmd.sourceCode = function () {
File.remove(output.filePath);
var f = new TextFile(output.filePath, TextFile.WriteOnly);
f.write("Dear Sir/Madam,\n\n");
f.write("this is a generated file.\n\n\n");
f.write("Best Regards and Mellow Greetings,\nYour Build Tool.\n");
f.close();
}
return cmd;
}
}
Rule {
multiplex: true
// no inputs -> just a generator
Artifact {
filePath: "foo.xml"
fileTags: "xml"
}
prepare: {
var cmd = new JavaScriptCommand();
cmd.description = "generating foo.xml";
cmd.highlight = "linker";
cmd.sourceCode = function () {
File.remove(output.filePath);
var doc = new Xml.DomDocument();
var root = doc.createElement("root");
doc.appendChild(root);
var tag = doc.createElement("Greeting");
root.appendChild(tag);
tag.appendChild(doc.createTextNode("text node"));
doc.save(output.filePath);
}
return cmd;
}
}
Rule {
inputs: ["main"]
Artifact {
filePath: "bar.txt"
fileTags: "text"
}
prepare: {
var cmd = new JavaScriptCommand();
cmd.description = "generating bar.txt";
cmd.highlight = "linker";
cmd.inputFileName = input.filePath;
cmd.sourceCode = function() {
File.remove(output.filePath);
var f = new TextFile(output.filePath, TextFile.WriteOnly);
f.write("Dear Sir/Madam,\n\n");
f.write("this file was generated from " + inputFileName + ".\n\n\n");
f.write("Best Regards and Mellow Greetings,\nYour Build Tool.\n");
f.close();
}
return cmd;
}
}
}
}
|