aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/referenceErrorInExport/referenceErrorInExport.qbs
blob: d64244f0f8ccc78dc21b2dfd6604c54d041b4003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Project {
    CppApplication {
        Depends { name: "other" }
        files: ["main.c"]
        cpp.includePaths: ["."]
    }

    DynamicLibrary {
        name: "other"
        files: ["main.c"]

        property stringList includePaths: []
        Export {
            Depends { name: "cpp" }
            cpp.includePaths: includePaths
        }
    }
}