aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/rad-after-incomplete-build/project_with_rule.qbs
blob: 42ec452dbdf1ae205f09f33aa3dcb9ec822c09ae (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
import qbs
import qbs.TextFile

Product {
    type: "custom"
    Group {
        files: "dummy.txt"
        fileTags: "input"
    }
    Rule {
        inputs: "input"
        Artifact {
            fileTags: "custom"
            filePath: "oldfile"
        }
        prepare: {
            var cmd = new JavaScriptCommand();
            cmd.description = "creating file";
            cmd.sourceCode = function() {
                var f = new TextFile(output.filePath, TextFile.WriteOnly);
                f.close();
            }
            return cmd;
        }
    }
}