summaryrefslogtreecommitdiff
path: root/tests/auto/language/testdata/modulescope.qbs
blob: c3c9db5d96b3bcb88c1029e3077bb8ec4fd7bbd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import "modulescope_base.qbs" as MyProduct

Project {
    MyProduct {
        name: "product1"
        property int e: 12
        property int f: 13
        scopemod.a: 2
        scopemod.f: 2
        scopemod.g: e * f
        scopemod.h: base + 2
    }
}