aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/propertyChanges/propertyChanges.qbs
blob: 0ae8c1550d006771a95583ee9d05290726405b05 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import qbs.Environment
import qbs.File
import qbs.TextFile

Project {
    property var projectDefines: ["blubb2"]
    property string fileContentSuffix: "suffix 1"
    property string testProperty: "default value"
    CppApplication {
        name: qbs.enableDebugCode ? "product 1.debug" : "product 1.release"
        cpp.defines: ["blubb1"]
        files: "source1.cpp"
    }
    CppApplication {
        Depends { name: 'library' }
        name: "product 2"
        cpp.defines: project.projectDefines
        files: "source2.cpp"
    }
    CppApplication {
        name: "product 3"
        cpp.defines: Environment.getEnv("QBS_BLACKBOX_DEFINE")
        files: "source3.cpp"
    }
    DynamicLibrary {
        Depends { name: "cpp" }
        name: "library"
        files: "lib.cpp"
        Properties {
            condition: qbs.targetOS.contains("darwin")
            bundle.isBundle: false
        }
    }

    Product {
        name: "generated text file"
        type: ["my_output"]
        property string fileContentPrefix: "prefix 1"

        Rule {
            multiplex: true
            Artifact { filePath: "nothing"; fileTags: ["my_output"] }
            prepare: {
                var cmd = new JavaScriptCommand();
                cmd.silent = true;
                cmd.sourceCode = function() { console.info(product.fileContentPrefix); }
                return cmd;
            }
        }

        Rule {
            multiplex: true
            Artifact { filePath: "generated.txt"; fileTags: ["my_output"]  }
            prepare: {
                var cmd = new JavaScriptCommand();
                cmd.description = "generating " + output.filePath;
                cmd.highlight = "codegen";
                cmd.sourceCode = function() {
                    file = new TextFile(output.filePath, TextFile.WriteOnly);
                    file.truncate();
                    file.write(product.fileContentPrefix + "contents 1"
                               + project.fileContentSuffix);
                    file.close();
                }
                return cmd;
            }
        }
    }

    Product {
        Depends { name: "ruletest" }
        type: ["test-output2"]
        Rule {
            inputsFromDependencies: ['test-output']
            Artifact {
                fileTags: "test-output2"
                filePath: input.fileName + ".out2"
            }

            prepare: {
                var cmd = new JavaScriptCommand();
                cmd.highlight = "codegen";
                cmd.description = "making output from other output";
                cmd.sourceCode = function() { File.copy(input.filePath, output.filePath); }
                return cmd;
            }
        }
    }

    references: "ruletest.qbs"

    qbsSearchPaths: "."
}