aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/outerInGroup.qbs
blob: 50e6d13feb953f6ba164c8af22fc67c18300437c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import qbs.base 1.0

Project {
    Product {
        name: "OuterInGroup"
        qbs.installDir: "/somewhere"
        files: ["main.cpp"]
        Group {
            name: "Special Group"
            files: ["aboutdialog.cpp"]
            qbs.installDir: outer + "/else"
        }
    }
}