summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/configure/configure.qbs
blob: af5638dde6aa8a25a1623541a5bb5cff64b8ade8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import qbs.FileInfo

Project {
    property string name: 'configure'
    qbsSearchPaths: '.'
    Product {
        type: 'application'
        consoleApplication: true
        name: project.name
        files: 'main.cpp'
        Depends { name: 'cpp' }
        Depends { name: 'definition' }
    }
}