aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/installed-artifact/installed-artifact.qbs
blob: 7f7de9bc2cef86e8072a712cdc1837df4200f97d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import qbs 1.0


Project {
    CppApplication {
        name: "other app"
        files: ["main.cpp"]
    }

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