aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/installed-artifact/installed-artifact.qbs
blob: 4a355c38572aa8272fbd1337576c64360027042d (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
28
29
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"
        install: true
        installDir: "bin"
        Group {
            fileTagsFilter: "obj"
            qbs.install: true
            qbs.installDir: "objects"
        }
    }
}