aboutsummaryrefslogtreecommitdiffstats
path: root/lib/qtcreator/qtcomponents/qtcomponents.qbs
blob: 52600b32e362601259b22d664791edc53d04ebde (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import qbs.base 1.0

Product {
    type: ["installed_content"]
    name: "QtComponents"

    Group {
        qbs.installDir: "lib/qtcreator/qtcomponents/"
        fileTags: ["install"]
        files: [
            "Menu.qml",
            "ScrollBar.qml",
            "ContextMenu.qml",
            "TextArea.qml",
            "Switch.qml",
            "Tab.qml",
            "Slider.qml",
            "TabFrame.qml",
            "TextField.qml",
            "TabBar.qml",
            "MenuItem.qml",
            "Dial.qml",
            "ButtonRow.qml",
            "ToolBar.qml",
            "qmldir",
            "ProgressBar.qml",
            "RadioButton.qml",
            "TableColumn.qml",
            "GroupBox.qml",
            "Button.qml",
            "TableView.qml",
            "Frame.qml",
            "ToolButton.qml",
            "ScrollArea.qml",
            "SplitterRow.qml",
            "ChoiceList.qml",
            "CheckBox.qml",
            "SpinBox.qml",
        ]
    }

    Group {
        qbs.installDir: "lib/qtcreator/qtcomponents/images"
        fileTags: ["install"]
        files: [
            "images/folder_new.png",
        ]
    }

    Group {
        qbs.installDir: "lib/qtcreator/qtcomponents/custom/private"
        fileTags: ["install"]
        files: [
            "custom/private/ChoiceListPopup.qml",
        ]
    }

    Group {
        qbs.installDir: "lib/qtcreator/qtcomponents/custom/behaviors"
        fileTags: ["install"]
        files: [
            "custom/behaviors/ButtonBehavior.qml",
            "custom/behaviors/ModalPopupBehavior.qml",
        ]
    }

    Group {
        qbs.installDir: "lib/qtcreator/qtcomponents/custom"
        fileTags: ["install"]
        files: [
            "custom/ButtonGroup.js",
            "custom/Slider.qml",
            "custom/TextField.qml",
            "custom/ButtonRow.qml",
            "custom/qmldir",
            "custom/BasicButton.qml",
            "custom/ProgressBar.qml",
            "custom/GroupBox.qml",
            "custom/Button.qml",
            "custom/ButtonColumn.qml",
            "custom/SplitterRow.qml",
            "custom/ChoiceList.qml",
            "custom/CheckBox.qml",
            "custom/SpinBox.qml",
        ]
    }
}