aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/buildproperties_source/bp_source.qbp
blob: 0d6cb5741389e83003b00b11c6ca861c45471c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs.base 1.0

Project {
    Product {
        type: "application"
        name: "HelloWorld"

        Depends { name: 'cpp' }

        Group {
            cpp.defines: ['WORLD="BANANA"']
            files : [ "main.cpp" ]
        }
    }
}