aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/transformers/transformers.qbs
blob: a0b1d70b09ac38675e304a65ab4434c81d731af9 (plain)
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
import qbs 1.0
import qbs.File
import qbs.TextFile
import qbs.Xml
import qbs.FileInfo

Project {
    Product {
        name: "HelloWorld"
        type: "application"
        files: ["main.cpp"]

        Depends { name: "cpp" }

        Transformer {
            // no inputs -> just a generator
            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;
            }
        }

        Transformer {
            // 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 XmlDomDocument();
                    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;
            }
        }

        Transformer {
            inputs: ["main.cpp"]    // will be taken from the source dir
            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;
            }
        }
    }
}