aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/export-item-with-group/export-item-with-group.qbs
blob: 2dffc280355cf4e0b6c3877da2ebd5b2dacce0f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import qbs

Project {
    Product {
        name: "dep"
        Export {
            Depends { name: "cpp" }
            Group { files: ["main.cpp"] }
        }
    }

    Application {
        name: "app"
        bundle.isBundle: false
        Depends { name: "dep" }
    }
}