aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/installed-artifact/installed-artifact.qbs
blob: e2d18b2eaed619ff821828d88a477a406a64d0c4 (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
30
31
32
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"
        }
        Group {
            fileTagsFilter: "obj"
            qbs.install: true
            qbs.installDir: "objects"
        }
    }
}