aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/export-with-recursive-depends/project.qbs
blob: 045e65133f6c4a6a07ea3b4f4f2caa011dfff0bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs

Project {
    CppApplication {
        name: "app1"
        files: "main1.cpp"
        Export { Depends { name: "module1" } }
    }

    CppApplication {
        name: "app2"
        Depends { name: "app1" }
        files: "main2.cpp"
    }
    qbsSearchPaths: "qbs"
}