aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/list-properties-with-outer/modules/lower/lower.qbs
blob: 6f95977887853ef6b54e9301c3517081fc698e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import qbs

Module {
    property stringList listProp

    Rule {
        inputs: ["intype"]
        outputFileTags: "outtype"
        prepare: {
            var cmd = new JavaScriptCommand();
            cmd.silent = true;
            cmd.sourceCode = function() {
                console.info("listProp: " + JSON.stringify(input.lower.listProp));
            }
            return [cmd];
        }
    }
}