aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/invalid-artifact-path/invalid-artifact-path.qbs
blob: 650233d86bd70f7ff379384a4f4d89a386c31c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Project {
    property string artifactDir
    Product {
        type: "t"
        Rule {
            multiplex: true
            Artifact {
                filePath: project.artifactDir + "/file.out"
                fileTags: "t"
            }
            prepare: {
                var cmd = new JavaScriptCommand();
                cmd.sourceCode = function() {};
                return cmd;
            }
        }
    }
}