aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/appWithoutSources/project.qbs
blob: 983cc9bab68e8c79720615f0177193d0713268fb (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
import qbs 1.0

Project {
    StaticLibrary {
        name: "a"

        Depends { name: "cpp" }

        files: [
            "a.cpp",
        ]
    }

    StaticLibrary {
        name: "b"

        Depends { name: "a" }
        Depends { name: "cpp" }

        files: [
            "b.cpp",
        ]
    }

    CppApplication {
        name: "appWithoutSources"
        Depends { name: "a" }
        Depends { name: "b" }
    }
}