aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qtcomponents/styleitem/styleitem.qbs
blob: b5444dcd3aace2e3e74de63b96deb24385ecb14f (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
import qbs.base 1.0

DynamicLibrary {
    name: "styleplugin"
    destination: "lib/qtcreator/qtcomponents/plugin"

    Depends { name: "cpp" }
    Depends { name: "Qt"; submodules: ["core", "widgets", "declarative", "script"] }

    cpp.defines: project.additionalCppDefines

    files: [
        "qdeclarativefolderlistmodel.cpp",
        "qdeclarativefolderlistmodel.h",
        "qrangemodel.cpp",
        "qrangemodel.h",
        "qrangemodel_p.h",
        "qstyleitem.cpp",
        "qstyleitem.h",
        "qstyleplugin.cpp",
        "qstyleplugin.h",
        "qtmenu.cpp",
        "qtmenu.h",
        "qtmenubar.cpp",
        "qtmenubar.h",
        "qtmenuitem.cpp",
        "qtmenuitem.h",
        "qwheelarea.cpp",
        "qwheelarea.h"
    ]
}