aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/build-properties-source/build-properties-source.qbs
blob: 49f565b29038740b3e5dcdef4a10c36701c8aaf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import qbs 1.0

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

        Depends { name: 'cpp' }

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