aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/env-merging/env-merging.qbs
blob: 884dc4745674d4fe0e111fbcc6b5e320f72bcd62 (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
import qbs

Project {
    CppApplication {
        name: "tool"
        files: "main.c"
    }

    Product {
        name: "p"
        type: "custom"
        Depends { name: "tool" }
        Rule {
            inputsFromDependencies: "application"
            outputFileTags: "custom"
            prepare: {
                var cmd = new Command(input.filePath, []);
                cmd.description = "running tool";
                cmd.environment = ["PATH=/opt/tool/bin"];
                return cmd;
            }
        }
    }
}