aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/installed_artifact/installed_artifact.qbs
blob: 81562a70bdd960572d38b06cc87fe68e79a2175c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import qbs 1.0

Application {
    name: "installedApp"
    type: "application"
    Depends { name: "cpp" }
    Group {
        files: "main.cpp"
        qbs.install: true
        qbs.installDir: "src"
    }
    qbs.installPrefix: "/usr"
    Group {
        fileTagsFilter: "application"
        qbs.install: true
        qbs.installDir: "bin"
    }
}