aboutsummaryrefslogtreecommitdiffstats
path: root/src/packages/packages.qbs
blob: 29cc879e77f736d282e7fbb929780f860e50fde7 (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
import qbs

Project {
    references: [
        "archive/archive.qbs",
        "chocolatey/chocolatey.qbs",
    ]

    // Virtual product for building all possible packagings
    Product {
        Depends { name: "qbs archive"; required: false }
        Depends { name: "qbs chocolatey"; required: false }
        name: "dist"

        Group {
            name: "Scripts"
            prefix: "../../scripts/"
            files: [
                "make-release-archives.sh",
                "make-release-archives.bat",
            ]
        }
    }
}