summaryrefslogtreecommitdiff
path: root/share/qtcreator/translations/translations.qbs
blob: 867ff20da4e693ba94f8b43aeaf055fac3843a88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import qbs 1.0

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

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