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

Project {
    StaticLibrary {
        name: "a"

        Depends { name: "cpp" }

        files: [
            "a.c",
        ]
    }

    StaticLibrary {
        name: "b"

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

        files: [
            "b.c",
        ]
    }

    CppApplication {
        name: "appWithoutSources"
        type: ["application"]
        cpp.entryPoint: "main"

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