aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/list-property-order/modules/lower/lower.qbs
blob: df91816412d4be0de1e6d0893adff29e7ee943dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Module {
    property stringList listProp

    Rule {
        inputs: ["intype"]
        Artifact {
            filePath: "dummy.out"
            fileTags: "outtype"
        }
        prepare: {
            var cmd = new JavaScriptCommand();
            cmd.sourceCode = function() {
                console.warn("listProp = " + JSON.stringify(product.lower.listProp));
            };
            cmd.silent = true;
            return [cmd];
        }
    }
}