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

Product {
    name: "Translations"
    type: "qm"
    builtByDefault: false

    Depends { name: "Qt.core" }
    Depends { name: "qtc" }

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

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