aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/link_dynamiclib/link_dynamiclib.qbp
blob: 51172835af28d2e09833a45ee03b059f6fba3be6 (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
34
35
36
37
38
39
40
41
42
43
import qbs.base 1.0

Project {
    Application {
        name : "HelloWorld"
        destination: "bin"
        Group {
            files : [ "main.cpp" ]
        }
        Depends { name: "cpp" }
        Depends { name: "lib1" }
    }

    DynamicLibrary {
        name : "lib1"
        destination: "bin"
        Group {
            files : [ "lib1.cpp" ]
        }
        Depends { name: "cpp" }
        Depends { name: "lib2" }
    }

    DynamicLibrary {
        name : "lib2"
        destination: "bin"
        Group {
            files : [ "lib2.cpp" ]
        }
        Depends { name: "cpp" }
        Depends { name: "lib3" }
    }

    DynamicLibrary {
        name : "lib3"
        destination: "bin"
        Group {
            files : [ "lib3.cpp" ]
        }
        Depends { name: "cpp" }
    }
}