summaryrefslogtreecommitdiff
path: root/src/packages/packages.qbs
blob: e4870cf3154f973dadbdf8139ff01a48eb80c733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import qbs

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

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

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