aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/translations/translations.qbs
blob: 67e2fef02c04df833d2d545f40b530c631deb6e9 (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 1.0

Product {
    name: "Translations"
    type: "qm"
    Depends { name: "Qt.core" }

    Group {
        files: ["*.ts"]
        excludeFiles: [
            "qtcreator_es.ts",
            "qtcreator_hu.ts",
            "qtcreator_it.ts",
        ]
    }

    Group {
        fileTagsFilter: product.type
        qbs.install: true
        qbs.installDir: project.ide_data_path + "/translations"
    }
}