summaryrefslogtreecommitdiff
path: root/lib/qtcreator/qtcomponents/qtcomponents.qbs
blob: e3e7a5e60106166d6c147efbb61b8b486411dc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import qbs.base 1.0

Product {
    name: "QtComponents"

    Group {
        qbs.install: true
        qbs.installDir: (qbs.targetOS == "windows" ? "lib/qtcreator" : project.ide_library_path)
                        + "/qtcomponents"
        files: [
            "*.qml",
            "qmldir",
            "custom",
            "images"
        ]
    }
}