summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/artifact-scanning/artifact-scanning.qbs
blob: bcd2361631bbae5daae2d092fe7850868f8bce5e (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
Project {
    CppApplication {
        name: "p1"
        consoleApplication: true
        cpp.includePaths: ["."]
        files: [
            "p1.cpp",
            "shared.h",
        ]
    }

    CppApplication {
        name: "p2"
        consoleApplication: true
        cpp.includePaths: ["."]
        files: [
            "p2.cpp",
            "shared.h",
        ]
    }

    CppApplication {
        name: "p3"
        consoleApplication: true
        cpp.includePaths: [".", "subdir"]
        files: [
            "p3.cpp",
        ]
    }
}