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

Product {
    name: "QtComponents"

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