aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/subprojects/toplevelproject.qbs
blob: f167ccabc6400bb783c3e11e09d2aba15fc286f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import qbs

Project {
    name: "top level project"
    references: ["subproject2"]

    Project {
        condition: true
        name: "app-project"
        CppApplication {
            name: "app"
            Depends { name: "testLib" }
            cpp.defines: "MY_EXPORT="
            files: "subproject1/main.cpp"
        }
    }

    qbsSearchPaths: ["resources"]
}