aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/group-location-warning/group-location-warning.qbs
blob: 3a43d54aba5878837d6ef120878f3f56c7b2dc9b (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
import qbs
import "subdir/ParentInOtherDir.qbs" as ParentInOtherDir
import "subdir/AGroupInOtherDir.qbs" as AGroupInOtherDir
import "subdir/OtherGroupInOtherDir.qbs" as OtherGroupInOtherDir
import "subdir/YetAnotherGroupInOtherDir.qbs" as YetAnotherGroupInOtherDir
import "subdir/AndAnotherGroupInOtherDir.qbs" as AndAnotherGroupInOtherDir

Project {
    ParentInOtherDir {
        name: "p1"
        Depends { name: "gm" }

        Group {
            files: ["referenced-from-product.txt"]
        }
        GroupInSameDir { }
        AGroupInOtherDir { }
        OtherGroupInOtherDir { }
        YetAnotherGroupInOtherDir { }
        AndAnotherGroupInOtherDir { }
    }

    Product {
        name: "p2"
        AGroupInOtherDir { }
    }
}